navigatiox 0.0.1
navigatiox: ^0.0.1 copied to clipboard
A Flutter package for animated navigations
example/lib/main.dart
import 'package:example/homescreen.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Custom Navigation Transitions',
home: HomeScreen(),
);
}
}