flutter中是否有一个小部件允许您创建这样的视图



我需要在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
],
),
),

你可以选择最适合你的应用的方法

相关内容

  • 没有找到相关文章

最新更新