responsive_navigation_bar 0.0.1 responsive_navigation_bar: ^0.0.1 copied to clipboard
A responsive (and floatable) bottom navigation bar.
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(),
);
}
}