wave_bottom_bar 1.6.1 wave_bottom_bar: ^1.6.1 copied to clipboard
Flutter plugin for bottom navigation bar. Code is little and you can simple to use it.
import 'package:flutter/material.dart';
import 'page/common.dart';
import 'page/home.dart';
import 'page/use.dart';
import 'page/wave.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
routes: {
"/home": (context) => HomePage(),
"/common": (context) => CommonPage(),
"/wave": (context) => WavePage(),
"/use": (context) => UsePage(),
},
home: HomePage(),
);
}
}