简体   繁体   中英

How can I create this circles for my flutter UI?

I want to create those blue circles (you can see them on the picture), the app UI design was created with Figma.

I don't even know how to start, I'm new at flutter

Any ideas or tips?

Figma 设计截图

You can start learning from flutter.dev . There are many ways to do this. I am using Container with decoration

Container(
  height: 70,
  width: 70,
  padding: EdgeInsets.all(10), //spacing using padding
  decoration: BoxDecoration(
    shape: BoxShape.circle,
    border: Border.all(width: 5, color: Colors.blue),
  ),
  child: const Material( //inner circle
    color: Colors.green,
    shape: CircleBorder(),
  ),
)

More about Container .

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