Skip to content
Snippets Groups Projects
Commit 491aeb14 authored by Florian Schindler's avatar Florian Schindler
Browse files

Update app_scaffold.dart

added profile button
parent d477a4fc
No related branches found
No related tags found
No related merge requests found
......@@ -23,10 +23,21 @@ class _AppScaffoldState extends State<AppScaffold> {
return Scaffold(
appBar: AppBar(
title: const Text('Trackeroo',
style: TextStyle(color: Colors.black)),
backgroundColor: Colors.transparent,
bottomOpacity: 0.0,
style: TextStyle(
fontSize: 24.0,
fontWeight: FontWeight.bold
)
),
elevation: 0.0,
scrolledUnderElevation: 0.0,
actions: [
IconButton.filledTonal(
onPressed: () => {},
padding: const EdgeInsets.all(12.0),
icon: const Icon(Icons.person)
),
const SizedBox(width: 16.0)
],
),
body: screens[index],
bottomNavigationBar: NavigationBarTheme(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment