Skip to content

Instantly share code, notes, and snippets.

@shihaohong
Created July 16, 2019 21:36
Show Gist options
  • Save shihaohong/cb314af7124c8b76c2ec9767a087b563 to your computer and use it in GitHub Desktop.
Save shihaohong/cb314af7124c8b76c2ec9767a087b563 to your computer and use it in GitHub Desktop.
Pocophone bottom rounded corners not covered by SafeArea
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
bottomNavigationBar: Padding(
padding: EdgeInsets.only(
bottom: MediaQuery.of(context).padding.bottom,
),
child: BottomAppBar(
color: Colors.green,
shape: CircularNotchedRectangle(),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: <Widget>[
IconButton(onPressed: () {}, icon: Icon(Icons.menu)),
IconButton(onPressed: () {}, icon: Icon(Icons.mail)),
IconButton(onPressed: () {}, icon: Icon(Icons.radio_button_checked)),
],
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment