super_ticket_package 0.0.3 copy "super_ticket_package: ^0.0.3" to clipboard
super_ticket_package: ^0.0.3 copied to clipboard

The Super Ticket Package enhances Flutter app interfaces with customizable and visually appealing event ticket presentations, offering users an engaging and modern ticket viewing experience.

example/lib/main.dart

import 'package:example/home_view.dart';
import 'package:flutter/material.dart';

void main(List<String> args) {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(       
          colorScheme: ColorScheme.fromSeed(
            seedColor: Colors.blue,
          ),
          useMaterial3: true),
      debugShowCheckedModeBanner: false,
      home: const HomeView(),
    );
  }
}
8
likes
130
points
7
downloads

Publisher

verified publishernurhayatyurtaslan.com

Weekly Downloads

The Super Ticket Package enhances Flutter app interfaces with customizable and visually appealing event ticket presentations, offering users an engaging and modern ticket viewing experience.

Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on super_ticket_package