简体   繁体   中英

Flutter custom widget

How to create a view like this in Flutter?

等式视图

I can give you an idea of doing it.

Row(
  crossAxisAlignment: CrossAxisAlignment.center,
  Text("a"), 
  Column(
    Text("m"),
    Container(height: 2.0),
    Text("v2)
  ),
  Container(width: 2.0)
)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM