easy_bottom_nav 0.0.1 copy "easy_bottom_nav: ^0.0.1" to clipboard
easy_bottom_nav: ^0.0.1 copied to clipboard

A customizable and responsive bottom navigation bar for Flutter applications.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:easy_bottom_nav/easy_bottom_nav.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'EasyBottomNav Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: const Text('EasyBottomNav Demo'),
        ),
        body: const Center(
          child: Text('Hello, World!'),
        ),
      ),
    );
  }
}
0
likes
160
points
202
downloads

Documentation

API reference

Publisher

verified publisheralfuad.me

Weekly Downloads

A customizable and responsive bottom navigation bar for Flutter applications.

Repository (GitHub)
View/report issues

Topics

#bottom-nav #bottom-navigation #navigation #nav #navbar

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on easy_bottom_nav