Created
May 15, 2019 17:18
-
-
Save Blasanka/3fcf605854a36bc7ee5f3550d204d488 to your computer and use it in GitHub Desktop.
Circular notched FloatingActionButton with BottomNavigationBar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MaterialApp( | |
title: 'Flutter GTranslate Demo', | |
theme: ThemeData( | |
primarySwatch: Colors.blue, | |
), | |
home: MyApp(), | |
)); | |
} | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
body: Stack( | |
children: <Widget>[ | |
Container( | |
decoration: BoxDecoration( | |
image: DecorationImage( | |
image: NetworkImage( | |
"https://images.pexels.com/photos/1054289/pexels-photo-1054289.jpeg", | |
), | |
fit: BoxFit.cover, | |
), | |
), | |
), | |
Center( | |
child: CircularProgressIndicator(backgroundColor: Colors.red,), | |
), | |
], | |
), | |
bottomNavigationBar: BottomAppBar( | |
shape: CircularNotchedRectangle(), | |
notchMargin: 4.0, | |
child: Padding( | |
padding: const EdgeInsets.symmetric(vertical: 8.0), | |
child: Row( | |
mainAxisAlignment: MainAxisAlignment.spaceEvenly, | |
children: <Widget>[ | |
InkWell( | |
onTap: () {}, | |
child: Column( | |
mainAxisSize: MainAxisSize.min, | |
children: <Widget>[ | |
Icon(Icons.person), | |
Text("Profile"), | |
], | |
), | |
), | |
InkWell( | |
onTap: () {}, | |
child: Column( | |
mainAxisSize: MainAxisSize.min, | |
children: <Widget>[ | |
Icon(Icons.favorite), | |
Text("Favorite"), | |
], | |
), | |
), | |
InkWell( | |
onTap: () {}, | |
child: Column( | |
mainAxisSize: MainAxisSize.min, | |
children: <Widget>[ | |
Icon(Icons.settings), | |
Text("Settings"), | |
], | |
), | |
), | |
SizedBox(width: 6.0), | |
], | |
), | |
), | |
), | |
floatingActionButtonLocation: FloatingActionButtonLocation.endDocked, | |
floatingActionButton: FloatingActionButton(onPressed: () {}, child: Icon(Icons.menu),), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment