Muj*_*uje 6 android dart flutter
我有一个PopupMenuButton小部件,我想在每个小部件的开头添加一个图标PopupMenuItem。我一直试图找到一种方法来做到这一点,但我没有找到任何方法。
Below is the **main.dart** file.
import 'package:flutter/material.dart';
import 'package:practical_0/homepage.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue
),
home: Homepage(),
);
}
}
Run Code Online (Sandbox Code Playgroud)
下面是home.dart文件。这是我实现 PopupMenuButton 的地方。我想要的图标出现在开始PopupMenuItem之前text。
import 'package:flutter/material.dart';
enum WhyFarther { harder, smarter, selfStarter, tradingCharter }
class Homepage extends StatelessWidget {
final double heightFactor = 600/896;
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
return new Card(
new Row(
children: <Widget>[
PopupMenuButton<WhyFarther>(
onSelected: (WhyFarther result) { setState(() { _selection = result; }); },
itemBuilder: (BuildContext context) => <PopupMenuEntry<WhyFarther>>[
const PopupMenuItem<WhyFarther>(
value: WhyFarther.harder,
child: Text('Working a lot harder'),
),
const PopupMenuItem<WhyFarther>(
value: WhyFarther.smarter,
child: Text('Being a lot smarter'),
),
const PopupMenuItem<WhyFarther>(
value: WhyFarther.selfStarter,
child: Text('Being a self-starter'),
),
const PopupMenuItem<WhyFarther>(
value: WhyFarther.tradingCharter,
child: Text('Placed in charge of trading charter'),
),
],
),
],
)
),
),
);
}
}
Run Code Online (Sandbox Code Playgroud)
你可以用一行来做,像这样:
PopupMenuItem<WhyFarther>(
value: WhyFarther.harder,
child: Row(
children: <Widget>[
Icon(Icons.work),
Text('Working a lot harder'),
],
),
),
Run Code Online (Sandbox Code Playgroud)
我实际上建议使用这样的 ListTile:
PopupMenuItem<WhyFarther>(
value: WhyFarther.harder,
child: ListTile(
leading: Icon(Icons.work),
title: Text('Working a lot harder'),
),
)
Run Code Online (Sandbox Code Playgroud)
查看 Flutter Gallery 以获取实时示例:https : //gallery.flutter.dev/#/demo/menu
| 归档时间: |
|
| 查看次数: |
4562 次 |
| 最近记录: |