wave_bottom_bar 1.6.1 copy "wave_bottom_bar: ^1.6.1" to clipboard
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.

example/lib/main.dart

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(),
    );
  }
}
7
likes
150
pub points
23%
popularity

Publisher

unverified uploader

Flutter plugin for bottom navigation bar. Code is little and you can simple to use it.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on wave_bottom_bar