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

A beautiful and animated bottom navigation. The navigation bar use your current theme, but you are free to customize it.

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: HomeScreen(),
    );
  }
}

class HomeScreen extends StatefulWidget {
  const HomeScreen({super.key});

  @override
  State<HomeScreen> createState() => _HomeScreenState();
}

class _HomeScreenState extends State<HomeScreen> with TickerProviderStateMixin {
  int selectItem = 0;

  List<BottomBarItem> itemList = [
    BottomBarItem(name: "Home", icon: Icons.home),
    BottomBarItem(name: "Search", icon: Icons.search),
    BottomBarItem(name: "Add", icon: Icons.add),
    BottomBarItem(name: "setting", icon: Icons.settings),
    BottomBarItem(name: "Profile", icon: Icons.person),
  ];

  @override
  void initState() {
    selectItem = 0;
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    final height = MediaQuery.of(context).size.height;
    final width = MediaQuery.of(context).size.width;
    return Scaffold(
      backgroundColor: Colors.grey.shade200,
      appBar: AppBar(
        title: Text("HomeScreen"),
      ),
      bottomNavigationBar: CustomContainer(
        selectItem: selectItem,
        onTap: (val) {
          setState(
            () {
              selectItem = val;
            },
          );
        },
        itemList: itemList,
      ),
    );
  }
}
0
likes
130
pub points
0%
popularity

Publisher

unverified uploader

A beautiful and animated bottom navigation. The navigation bar use your current theme, but you are free to customize it.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on custom_containor