android – How to design ring buttons Flutter


enter image description hereI have this design and I want to make it using filters. Can you help me with it?
The design consists of images in PNG format

I tried several times but the design is not clear

thank you


Widget _buildMenuBody() {
  return Column(
    mainAxisSize: MainAxisSize.max,
    mainAxisAlignment: MainAxisAlignment.center,
    children: [
      Container(
        width: 150,
        height: 62,
        child: Image.asset(
          "assets/Images/daily.png",
        ),
      ),
      Row(
        mainAxisAlignment: MainAxisAlignment.center,
        children: [
          Image.asset(
            "assets/Images/ad.png",
            width: 60,
            height: 115,
          ),
          Image.asset("assets/Images/play.png", width: 100),
          Image.asset(
            "assets/Images/random.png",
            width: 60,
            height: 115,
          ),
        ],
      ),
      Image.asset(
        "assets/Images/about.png",
        width: 150,
        height: 62,
      ),
    ],
  );
}

Latest articles

spot_imgspot_img

Related articles

Leave a reply

Please enter your comment!
Please enter your name here

spot_imgspot_img