coupon_uikit 0.3.0
coupon_uikit: ^0.3.0 copied to clipboard
A UI kit that contains clippers and widgets which implements the shape of the coupon cards
import 'package:flutter/material.dart';
import 'samples/showcase_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Coupon UI Kit Showcase',
theme: ThemeData(
primarySwatch: Colors.blue,
useMaterial3: true,
),
home: const ShowcaseScreen(),
);
}
}