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

Este paquete ayuda al manejo de transiciones entre pantallas de manera elegante y facil.

example/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Material App',
      initialRoute: 'page1',
      routes: {
        'page1': (_) => Page1Page(),
        'page2': (_) => Page2Page(),
      },
    );
  }
}

class Page1Page extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('page 1'),
        backgroundColor: Colors.transparent,
      ),
      backgroundColor: Colors.cyan,
      body: Center(
        child: MaterialButton(
          child: Text('Go to page2'),
          color: Colors.white,
          shape:
              RoundedRectangleBorder(borderRadius: BorderRadius.circular(20)),
          onPressed: () {
            // Navigator.pushNamed(context, 'page2');

            RouteTransitions(
              context: context,
              child: Page2Page(),
              animation: AnimationType.fadeIn,
              duration: Duration(seconds: 1),
              replacement: true,
            );
          },
        ),
      ),
    );
  }
}

class Page2Page extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('page 1'),
        backgroundColor: Colors.transparent,
      ),
      backgroundColor: Colors.amber,
      body: Center(
        child: Text('page 2'),
      ),
    );
  }
}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Este paquete ayuda al manejo de transiciones entre pantallas de manera elegante y facil.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_route_transitions_evargas