home - Remove icons on top appbar
This commit is contained in:
parent
404b394495
commit
2052f7b77d
1 changed files with 2 additions and 21 deletions
|
@ -15,28 +15,9 @@ class Home extends StatelessWidget {
|
|||
return Scaffold(
|
||||
backgroundColor: const Color(0xff1b1c1e),
|
||||
appBar: AppBar(
|
||||
title: const Text('Nekoya'),
|
||||
centerTitle: true,
|
||||
backgroundColor: const Color(0xff212226),
|
||||
leading: IconButton(
|
||||
onPressed: () {},
|
||||
icon: SvgPicture.asset("assets/icons/menu.svg"),
|
||||
),
|
||||
title: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: const [
|
||||
SizedBox(width: defaultPadding / 2),
|
||||
Text(
|
||||
"Nekoya",
|
||||
style: TextStyle(fontSize: 20.0, color: Colors.white),
|
||||
),
|
||||
],
|
||||
),
|
||||
actions: [
|
||||
IconButton(
|
||||
icon: SvgPicture.asset("assets/icons/Notification.svg"),
|
||||
color: Colors.white,
|
||||
onPressed: () {},
|
||||
),
|
||||
],
|
||||
),
|
||||
body: SingleChildScrollView(
|
||||
physics: const BouncingScrollPhysics(
|
||||
|
|
Loading…
Add table
Reference in a new issue