popup_menu_title

Creator: coderz1093

Last updated:

0 purchases

popup_menu_title Image
popup_menu_title Images
Add to Cart

Description:

popup menu title

popup_menu_title #
A Flutter package to provide a popup menu title.

Usage #
import 'package:popup_menu_title/popup_menu_title.dart';

final menuItemList = [
PopupMenuTitle(
title: 'Popup menu title',
overflow: TextOverflow.fade,
// The text style below is the default style, but is specified
// here as an example of how to do so.
textStyle: TextStyle(
fontWeight: FontWeight.w600,
color: Theme
.of(context)
.primaryColor,
),
),
PopupMenuItem<void>(child: const Text('Item 1')),
PopupMenuItem<void>(child: const Text('Item 2')),
PopupMenuItem<void>(child: const Text('Item 3')),
];
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.