Skip to content

Instantly share code, notes, and snippets.

@Blasanka
Created May 15, 2019 17:18
Show Gist options
  • Save Blasanka/3fcf605854a36bc7ee5f3550d204d488 to your computer and use it in GitHub Desktop.
Save Blasanka/3fcf605854a36bc7ee5f3550d204d488 to your computer and use it in GitHub Desktop.
Circular notched FloatingActionButton with BottomNavigationBar
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