skip to Main Content

Firebase conditions in where – Flutter

QuerySnapshot querySnapshot = await FirebaseFirestore.instance .collection('stations') .where('norequest', isGreaterThan: 9) .get(); Here i want get if 'norequest' is a whole number like 10 , 20 , 30 , 40 something like this and greater than 5 ? How can i get…

VIEW QUESTION

How can I fit an image inside a square shape in Flutter?

return Scaffold( body: Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: [ Card( clipBehavior: Clip.antiAliasWithSaveLayer, shape: RoundedRectangleBorder( borderRadius: BorderRadius.circular(20)), child: Container( height: 200, width: 200, decoration: BoxDecoration( image: DecorationImage( image: AssetImage( 'assets/images/homepage.jpg', ), alignment: FractionalOffset.topLeft, fit: BoxFit.contain)), ), ), ], ), ),…

VIEW QUESTION
Back To Top
Search