Flutter
Sun Jan 21 2024
How to set the Device Orientation in Flutter?
In Flutter, we can set the orientation for our app using the DeviceOrientation Enum. We have an app that by default supports all the orientations, we want it to support only portraitUp mode so that when the screen is rotated our app remains in **port
Read More >>
Thu Jan 25 2024
Stateful and stateless widgets in Flutter.
We use either StatelessWidget or StatefulWidget to create a new widget by extending one of them depending on our use case......
Read More >>