super_ticket_package 0.0.2
super_ticket_package: ^0.0.2 copied to clipboard
The Super Ticket Package enhances Flutter app interfaces by providing a customizable and visually appealing solution for presenting event tickets. With dynamic features like color variations and sleek [...]
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(),
);
}
}