circle_bnb 0.0.3 copy "circle_bnb: ^0.0.3" to clipboard
circle_bnb: ^0.0.3 copied to clipboard

A customizable circular bottom navigation bar for Flutter apps with smooth animations and multiple style options.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:example/pages/app_home_page.dart';

void main() {
  runApp(
    const App()
  );
}

class App extends StatelessWidget {
  const App({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primaryColor: Colors.blue,
        highlightColor: Colors.transparent,
        splashColor: Colors.blue.shade200,
      ),
      home: const AppHomePage(),
    );
  }
}
4
likes
150
points
91
downloads

Publisher

verified publishersfatihy.com

Weekly Downloads

A customizable circular bottom navigation bar for Flutter apps with smooth animations and multiple style options.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on circle_bnb