coupon_uikit 0.0.1+1 coupon_uikit: ^0.0.1+1 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 'package:flutter/widgets.dart';
import 'samples/horizontal_coupon_example_1.dart';
import 'samples/horizontal_coupon_example_2.dart';
import 'samples/vertical_coupon_example.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Coupon Cards Example',
theme: ThemeData(primarySwatch: Colors.blue),
home: const MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: const Text('Coupon Cards Demo')),
body: Padding(
padding: const EdgeInsets.all(14),
child: SingleChildScrollView(
child: Column(
children: const [
HorizontalCouponExample1(),
SizedBox(height: 14),
VerticalCouponExample(),
SizedBox(height: 14),
HorizontalCouponExample2(),
],
),
),
),
);
}
}