gt_appbar 1.0.1 copy "gt_appbar: ^1.0.1" to clipboard
gt_appbar: ^1.0.1 copied to clipboard

A customizable AppBar widget for Flutter, offering enhanced features like bottom curveness and an optional divider for versatile app bar design. #flutter_appbar #sticky_app_bar #custom_appbar

gt_appbar #

gt_appbar is a customizable AppBar widget for Flutter, offering enhanced features like bottom curveness and an optional divider for versatile app bar design.

Features #

  • Offers extensive options for styling, including colors, text styles, and widget placements.
  • Allows the AppBar to have a curved bottom edge for a distinct visual appeal.
  • Provides an optional divider below the AppBar to enhance content separation and UI clarity.
  • Ensures seamless integration with different themes and brightness modes for consistent app aesthetics.

Getting started #

To use this package, add gt_appbar as a dependency in your pubspec.yaml file.

Usage #

Minimal example:

     GTAppBar(
            title: "Global AppBar",
          ),

Custom settings:

   GTAppBar(
            title: "Global AppBar",
            backgroundColor: Colors.blueAccent.withOpacity(0.5),
            showDivider: true,
            bottomCurveness: 8.0,
            elevation: 8.0,
            centerTitle: false,
            titleSpacing: 0.0,
            leading: IconButton(
              icon: const Icon(Icons.menu),
              onPressed: () {
                // Handle menu press
              },
            ),
            actions: [
              IconButton(
                icon: const Icon(Icons.search),
                onPressed: () {
                  // Handle search press
                },
              ),
              IconButton(
                icon: const Icon(Icons.notifications),
                onPressed: () {
                  // Handle notifications press
                },
                
              ),
              
            ],
          ),

See also #

2
likes
150
points
149
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable AppBar widget for Flutter, offering enhanced features like bottom curveness and an optional divider for versatile app bar design. #flutter_appbar #sticky_app_bar #custom_appbar

Repository (GitHub)
View/report issues

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on gt_appbar