22 lines
550 B
Dart
22 lines
550 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:wyatt_ui_kit_example/cards/information_card/information_cards.dart';
|
|
|
|
class Cards extends StatelessWidget {
|
|
const Cards({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) => ListView(
|
|
shrinkWrap: true,
|
|
children: [
|
|
Text(
|
|
'Cards',
|
|
style: Theme.of(context)
|
|
.textTheme
|
|
.titleLarge!
|
|
.copyWith(color: Colors.white),
|
|
),
|
|
const InformationCards(),
|
|
],
|
|
);
|
|
}
|