19.2 C
New York
Saturday, April 1, 2023

Flutter rounded Card examples

The 2 following examples show you how to create rounded-corner cards and circle cards in Flutter by using the Card widget.

Rounded Card

Screenshot:

The code:

class HomePage extends StatelessWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: const Text('Kindacode.com'),
        ),
        body: Center(
          child: Card(
              elevation: 20,
              color: Colors.amber,
              shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.circular(50),
              ),
              child: const SizedBox(
                width: 300,
                height: 200,
                child:
                    Center(child: Text('YoYo', style: TextStyle(fontSize: 50))),
              )),
        ));
  }
}

Circle Card

A circle card actually is a specific rounded card.

Screenshot:

The code snippets for the circle Card

You can set the shape property to RoundedRectangleBorder() or CircleBorder() in order to create a circle Card.

If you use RoundedRectangleBorder, the key point here is to increase the border radius to a large number, at least half the width of the CardÂ’s child. One other necessary thing is that the child needs to be a square.

Card(
              elevation: 20,
              shape: RoundedRectangleBorder(
                borderRadius: BorderRadius.circular(150),
              ),
              child: Container(
                  width: 300,
                  height: 300,
                  decoration: BoxDecoration(
                    // The child of a round Card should be in round shape 
                       if it has a background color
                      shape: BoxShape.circle, 
                      color: Colors.blue[100]
                  )
              )
            ),

Using CircleBorder is much shorter and neater:

Card(
              elevation: 20,
              shape: const CircleBorder(),
              color: Colors.blue[100],
              child: const SizedBox(
                width: 300,
                height: 300,
              )),
Advertisements

Full code in main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      // Remove the debug banner
      debugShowCheckedModeBanner: false,
      title: "Kindacode.com",
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  const HomePage({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
        appBar: AppBar(
          title: const Text('Kindacode.com'),
        ),
        body: Padding(
          padding: const EdgeInsets.all(30),
          child: Card(
              elevation: 20,
              color: Colors.blue[100],
              shape: const CircleBorder(),
              child: const SizedBox(
                width: 300,
                height: 300,
              )),
        ));
  }
}

Hope these examples are helpful for you.

If you would like to learn more new and interesting things about Flutter, take a look at the following articles:

You can also check out our Flutter topic page or Dart topic page for the latest tutorials and examples.

Advertisements

Related Articles

Latest Articles