transit_kit 1.0.0 copy "transit_kit: ^1.0.0" to clipboard
transit_kit: ^1.0.0 copied to clipboard

A comprehensive Flutter page transition library with 184 high-quality, production-ready transitions. Features a full override system, global configuration, physics-based animations, 3D effects, clip r [...]

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
150
points
117
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

A comprehensive Flutter page transition library with 184 high-quality, production-ready transitions. Features a full override system, global configuration, physics-based animations, 3D effects, clip reveals, and more. Supports go_router, Navigator.push, and custom transition builders.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter

More

Packages that depend on transit_kit