bank_card_widget 0.0.2
bank_card_widget: ^0.0.2 copied to clipboard
A customizable and reusable bank card widget for Flutter with various styling options.
import 'package:flutter/material.dart';
import 'pages/home_page.dart';
import 'themes/app_themes.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Bank Card Widget Example',
theme: AppThemes.lightTheme,
darkTheme: AppThemes.darkTheme,
home: const HomePage(),
);
}
}