ticket_clippers 0.0.8 copy "ticket_clippers: ^0.0.8" to clipboard
ticket_clippers: ^0.0.8 copied to clipboard

Flutter package that provides you clippers to create tickets.

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: 

Import #

import 'package:ticket_clippers/ticket_clippers.dart';

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,
              ),
            ),
          ),
        ),
      ),
    ),

CREATED BY #

 NOBOMAN
11
likes
150
points
226
downloads

Publisher

unverified uploader

Weekly Downloads

Flutter package that provides you clippers to create tickets.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on ticket_clippers