banner_listtile 2.3.0 copy "banner_listtile: ^2.3.0" to clipboard
banner_listtile: ^2.3.0 copied to clipboard

Create a tile with banner at the corner and lot more option to customize. Banner with "New" tag or something you want.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'custom_screen.dart';
import 'listview_screen.dart';

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      //debugShowCheckedModeBanner: false,
      title: 'Flutter Demo',
      theme: ThemeData.light(),
      home:  const ContainerTestView(),
    );
  }
}

class ContainerTestView extends StatefulWidget {
   const ContainerTestView({Key? key}) : super(key: key);



  @override
  State<ContainerTestView> createState() => _ContainerTestViewState();
}

class _ContainerTestViewState extends State<ContainerTestView> {
  int _selectedIndex = 0;

  static final List<Widget> _pages = <Widget>[
    const ListviewScreen(),
    const CustomScreen(),

  ];

   void _onItemTapped(int index) {
     setState(() {
       _selectedIndex = index;
     });
   }

  @override
  Widget build(BuildContext context) {

    return Scaffold(
        backgroundColor: Colors.white,
        appBar: AppBar(
          title: const Text("Banner Listtile"),
        ),
      body: _pages.elementAt(_selectedIndex),
      bottomNavigationBar: BottomNavigationBar(
        currentIndex: _selectedIndex, //New
        onTap: _onItemTapped,
        items: const <BottomNavigationBarItem>[
          BottomNavigationBarItem(
            icon: Icon(Icons.menu),
            label: 'List',
          ),
          BottomNavigationBarItem(
            icon: Icon(Icons.dashboard_customize),
            label: 'Custom',
          ),

        ],
      ),
    );
  }
}
71
likes
140
points
128
downloads

Publisher

unverified uploader

Weekly Downloads

Create a tile with banner at the corner and lot more option to customize. Banner with "New" tag or something you want.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on banner_listtile