transit_kit 1.0.1 copy "transit_kit: ^1.0.1" to clipboard
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.

example/lib/main.dart

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(),
    );
  }
}
4
likes
160
points
117
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A powerful Flutter page transition library with 184+ production-ready animations. Fully customizable, high-performance, and compatible with go_router and Navigator.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on transit_kit