skip to Main Content

FutureBuilder flutter

I am creating an app like snapchat where the app start with camera page and before this it ask user for camera and microphone permission if the user grant both permission then the camera widget will be displayed other wise…

VIEW QUESTION

The Future builder in Flutter is fetching data twice

The Future builder in my Flutter app is fetching data twice, as opposed to fetching data just once. class StudentListView extends StatefulWidget { @override State<StudentListView> createState() => _StudentListViewState(); } class _StudentListViewState extends State<StudentListView> { List<StudentModel> students = []; late Future…

VIEW QUESTION
Back To Top
Search