custom_route_transition_hfr 0.0.3 copy "custom_route_transition_hfr: ^0.0.3" to clipboard
custom_route_transition_hfr: ^0.0.3 copied to clipboard

Este paquete ayuda al manejo de transiciones entre pantallas de forma elegante y fácil.

example/main.dart

import 'package:flutter/material.dart';
import 'package:custom_route_transition_hfr/custom_route_transition_hfr.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      debugShowCheckedModeBanner: false,
      initialRoute: 'page1',
      routes: {
        'page1': (_) => const Page1(),
        'page2': (_) => const Page2(),
      },
    );
  }
}

class Page1 extends StatelessWidget {
  const Page1({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Page 1'),
        backgroundColor: Colors.transparent,
      ),
      backgroundColor: Colors.blue,
      body: Center(
          child: MaterialButton(
        color: Colors.white,
        onPressed: () {
          RouteTransitions(
              context: context,
              child: const Page2(),
              duration: const Duration(milliseconds: 600));
        },
        child: const Text('Go to Page 2'),
      )),
    );
  }
}

class Page2 extends StatelessWidget {
  const Page2({super.key});

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('Page 2'),
        backgroundColor: Colors.transparent,
      ),
      backgroundColor: Colors.blueGrey,
      body: const Center(child: Text('Page 1')),
    );
  }
}
1
likes
150
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

Este paquete ayuda al manejo de transiciones entre pantallas de forma elegante y fácil.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on custom_route_transition_hfr