transit_kit 1.0.1
transit_kit: ^1.0.1 copied to clipboard
A powerful Flutter page transition library with 184+ production-ready animations. Fully customizable, high-performance, and compatible with go_router and Navigator.
import 'package:flutter/material.dart';
import 'core/theme.dart';
import 'screens/home_screen.dart';
void main() {
runApp(const TransitKitShowcase());
}
/// Root widget for the Transit Kit showcase application.
class TransitKitShowcase extends StatelessWidget {
const TransitKitShowcase({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Transit Kit Showcase',
debugShowCheckedModeBanner: false,
theme: buildAppTheme(),
home: const HomeScreen(),
);
}
}