You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansu_ui/example/lib/example_pop_up_menu.dart

46 lines
1.3 KiB

4 years ago
import 'package:ansu_ui/ansu_ui.dart';
import 'package:flutter/material.dart';
class ExamplePopUpMenu extends StatefulWidget {
ExamplePopUpMenu({Key key}) : super(key: key);
@override
_ExamplePopUpMenuState createState() => _ExamplePopUpMenuState();
}
class _ExamplePopUpMenuState extends State<ExamplePopUpMenu> {
@override
Widget build(BuildContext context) {
return ASScaffold(
title: 'PopUpMenu',
body: ListView(
children: [
4 years ago
SizedBox(height: 500),
4 years ago
ListTile(
title: 'PopUpMenu'.text,
trailing: Builder(
builder: (context) {
return TextButton(
child: 'test'.text,
onPressed: () {
showASPopUpMenu<int>(
context: context,
initValue: 3,
4 years ago
items: [
PopupMenuItem(child: 'test'.text, value: 1),
PopupMenuItem(child: 'test'.text, value: 2),
PopupMenuItem(child: 'test'.text, value: 3),
PopupMenuItem(child: 'test'.text, value: 4),
4 years ago
],
).then((value) {});
},
);
},
),
),
],
),
);
}
}