How to manage Safe Area insets in Flutter

⋅ 3 min read ⋅ Flutter

Table of Contents

What are Safe area insets

Not all available space on a screen is safe to use. With new devices coming, some areas might get obstructed by device shape or new hardware components.

Here is an example of the iPhone 13 Pro, which has round corners, and the Notch.

iPhone 13 Pro.
iPhone 13 Pro.

But this isn't limited to just hardware. Software components like the system UI, e.g., clock and battery, can also obstruct your UI.

Here is an example of the iOS status bar and home indicator, which always shows in portrait orientation.

A status bar and home indicator.
A status bar and home indicator.

Safe area insets refer to sufficient padding to avoid those obstacles.

You can easily support sarunw.com by checking out this sponsor.

Sponsor sarunw.com and reach thousands of iOS developers.

SafeArea widget

SafeArea is a widget that insets its child with sufficient padding to avoid obstacles.

By default, Flutter renders its view ignoring of safe area. So your view might be getting behind those hardware and software components.

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);


Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
home: Scaffold(
backgroundColor: Colors.yellow,
body: SizedBox.expand(
child: Container(
decoration: BoxDecoration(color: Colors.green),
child: Text(
'Hello, Flutter!',
style: Theme.of(context).textTheme.displayLarge,
),
),
),
),
);
}
}

Widgets got obstructed by hardware and software components.

Widgets got obstructed by hardware and software components.
Widgets got obstructed by hardware and software components.

Layout widgets inside the Safe area

To lay out widgets inside the safe area, simply put a widget that you want to avoid those obstacles as a child of the SafeArea widget.

For example, this will put enough offset to the child to avoid all the obstacles.

Here is an example of the previous widget, but this time we use the SafeArea widget.

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);


Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
home: Scaffold(
backgroundColor: Colors.yellow,
body: SafeArea(
child: SizedBox.expand(
child: Container(
decoration: BoxDecoration(color: Colors.green),
child: Text(
'Hello, Flutter!',
style: Theme.of(context).textTheme.displayLarge,
),
),
),
),
),
);
}
}

We set the parent background to yellow to demonstrate the non-safe area easier.

You can rest assured that a widget inside a SafeArea widget won't be obstructed by anything.

SafeArea widget.
SafeArea widget.

Ignore safe area insets at a specific edge

If you have a specific design need, you can ignore safe area insets to particular edges by set false to those edges.

Here is an example where we ignore the safe area for the bottom edge.

class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);


Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
home: Scaffold(
backgroundColor: Colors.yellow,
body: SafeArea(
bottom: false,
child: SizedBox.expand(
child: Container(
decoration: BoxDecoration(color: Colors.green),
child: Text(
'Hello, Flutter!',
style: Theme.of(context).textTheme.displayLarge,
),
),
),
),
),
);
}
}

Ignore safe area insets at the bottom.

Ignore safe area insets at the bottom.
Ignore safe area insets at the bottom.

Read more article about Flutter or see all available topic

Enjoy the read?

If you enjoy this article, you can subscribe to the weekly newsletter.
Every Friday, you'll get a quick recap of all articles and tips posted on this site. No strings attached. Unsubscribe anytime.

Feel free to follow me on Twitter and ask your questions related to this post. Thanks for reading and see you next time.

If you enjoy my writing, please check out my Patreon https://www.patreon.com/sarunw and become my supporter. Sharing the article is also greatly appreciated.

Become a patron Buy me a coffee Tweet Share
Previous
Custom Back button Action in SwiftUI

Learn how to have custom logic for a navigation view back button.

Next
How to remove duplicate items from Array in Swift

Learn how to do that using the Swift Algorithms module and without it.

← Home