ticket_card 0.1.0 copy "ticket_card: ^0.1.0" to clipboard
ticket_card: ^0.1.0 copied to clipboard

outdated

A ticket-style card

English | 简体中文

ticket_card #

pub package

A ticket-style card

图片名称

Usage #

To use this plugin, add ticket_card as a dependency in your pubspec.yaml file.

Widget #

TicketCard #

Prop Description
lineFromTop The distance from the top of the divider
lineRadius The radius of the rounded corners on either side of the divider
decoration Ticket-style card decorator
child A child component of a ticket card

Example #

// Import package
import 'package:ticket_card/ticket_card.dart';
import 'package:flutter/material.dart';

            TicketCard(
              decoration: TicketDecoration(
                shadow: [TicketShadow(color: Colors.black, elevation: 6)],
                border: TicketBorder(
                  color: Colors.green,
                  width: 0.1,
                  style: TicketBorderStyle.dotted
                )
              ),
              lineFromTop: 100,
              child: Container(
                height: 200,
                width: 200,
                color: Colors.white,
                child: Text(
                  "sdfsf",
                  style: TextStyle(color: Colors.black),
                ),
              ),
            )
8
likes
0
pub points
48%
popularity

Publisher

unverified uploader

A ticket-style card

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, path_drawing

More

Packages that depend on ticket_card