19. Flutter - SafeArea Widget
SafeArea widget prevents widgets from being blocked by the top into bar of a phone (where it shows time and battery, etc) by moving widgets down.
Wrap a widget in a SafeArea widget:
SafeArea(
child: Text('HELLO'),
),
SafeArea widget prevents widgets from being blocked by the top into bar of a phone (where it shows time and battery, etc) by moving widgets down.
Wrap a widget in a SafeArea widget:
SafeArea(
child: Text('HELLO'),
),
Comments
Post a Comment