ticket_clippers

Creator: coderz1093

Last updated:

Add to Cart

Description:

ticket clippers

Flutter package that provides you clippers to create tickets.
Getting started #
To use this plugin, add ticket_clippers as a dependency in your pubspec.yaml file.
dependencies:
ticket_clippers:
copied to clipboard
Import #
import 'package:ticket_clippers/ticket_clippers.dart';
copied to clipboard
Screenshots #

Example #
TicketClipper(
clipper: TicketRoundedEdgeClipper(
edge: Edge.horizontal,
position: 150,
radius: 25,
),
shadowRadius: ShadowRadius.circular(20),
shadow: const BoxShadow(
color: Color.fromARGB(255, 4, 234, 250),
offset: Offset(12, 12),
),
child: ClipRRect(
borderRadius: BorderRadius.circular(20),
child: Container(
height: 300,
width: 220,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(20),
color: const Color.fromARGB(255, 255, 0, 85)),
padding: const EdgeInsets.all(20),
child: const Center(
child: Text(
'Ticket Rounded Clipper',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 25,
fontWeight: FontWeight.w500,
color: Colors.white,
),
),
),
),
),
),
copied to clipboard
CREATED BY #
NOBOMAN
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.