我需要在Flutter中实现这样一个小部件。页面的完整版本,这个小部件将在这里使用。也许你知道内置小部件,这对我有帮助。但如果没有,实现这个小部件的最佳方法是什么?
您可以使用ListTile
ListTile(
leading: const Text("Lbikgabsb"),
trailing: Column(
children: [
const Text("900 P"),
const Text("2"), // add your decoration to the background
),
],
),
),
或者,您可以使用:
SizedBox(
height: your_height,
width:double.infinity,
child: Row(
children:[
Text("Lbikgabsb"),
Column(
children: [
const Text("900 P"),
const Text("2"), // add your decoration to the background
],
),
),
你可以选择最适合你的应用的方法