flutter

Card rounded

Card(
    elevation: 8,
    shape: RoundedRectangleBorder(
        borderRadius: BorderRadius.circular(8),
    ),
    color: Colors.blue,
    child: Padding(
        padding: const EdgeInsets.all(32.0),
        child:Text("Hello"),
    )
)
Was this helpful?