30DaysOfFlutter
30DaysOfFlutter copied to clipboard
Learn Flutter in 30 Days
After change focus , Shortcuts keys are not working again. For example : Suppose that If we have TextField in the same screen and focus on the textField (or remove...
https://github.com/iampawan/30DaysOfFlutter/blob/e7578cffb012838d1051c85b0766169821e918a0/lib/pages/login_page.dart#L65 This does not work anymore, it gives an error ``` The property 'isEmpty' can't be unconditionally accessed because the receiver can be 'null'. ``` Similarly, https://github.com/iampawan/30DaysOfFlutter/blob/e7578cffb012838d1051c85b0766169821e918a0/lib/pages/login_page.dart#L16 This also give...
Day 12 : I'm not able to scroll down in the catalog app when we are adding 50 items class HomePage extends StatelessWidget { const HomePage({super.key}); @override Widget build(BuildContext context)...
onPressed: () { _cart.remove(_cart.items[index]) ; setState() {} ; }, g a // this code is being applied but not removing the items from cart
