Skip to content

Instantly share code, notes, and snippets.

@prakhart111
Created April 2, 2025 07:25
Show Gist options
  • Save prakhart111/c561787b6f2e1ddf6e94e294b939d454 to your computer and use it in GitHub Desktop.
Save prakhart111/c561787b6f2e1ddf6e94e294b939d454 to your computer and use it in GitHub Desktop.
Snippet created via Remix API
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text('Card Example'),
),
body: Center(
child: Card(
elevation: 5,
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(15),
),
child: Container(
width: 300,
padding: EdgeInsets.all(16),
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Flutter Card',
style: TextStyle(
fontSize: 22,
fontWeight: FontWeight.bold,
),
),
SizedBox(height: 10),
Text(
'This is a simple card widget in Flutter. It demonstrates basic card styling and layout.',
style: TextStyle(
fontSize: 16,
color: Colors.grey[700],
),
),
SizedBox(height: 15),
Row(
mainAxisAlignment: MainAxisAlignment.end,
children: [
TextButton(
onPressed: () {},
child: Text('LEARN MORE'),
),
SizedBox(width: 8),
ElevatedButton(
onPressed: () {},
child: Text('ACTION'),
),
],
),
],
),
),
),
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment