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

Este paquete ayuda al manejo de transiciones entre pantalla de forma elegante y facil.

example/main.dart

import 'package:flutter/material.dart';

import 'package:custom_route_transition_pcc/custom_route_transition_pcc.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Custom Transition Route',
      initialRoute: 'page1',
      routes: {
        'page1': (_) => Page1(),
        'page2': (_) => Page2(),
      },
    );
  }
}

class Page1 extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.blue,
      appBar: AppBar(
        title: Text('Page 1'),
        centerTitle: true,
        backgroundColor: Colors.transparent,
      ),
      body: Center(
          child: MaterialButton(
        child: Text('Go to page2'),
        color: Colors.white,
        onPressed: () {
          RouteTransitions(
              context: context,
              child: Page2(),
              animation: AnimationType.fadeIn,
              duration: Duration(milliseconds: 500),
              replacement: true);
        },
      )),
    );
  }
}

class Page2 extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.blueGrey,
      appBar: AppBar(
        title: Text('Page 2'),
        centerTitle: true,
        backgroundColor: Colors.transparent,
      ),
      body: Center(
        child: Text('Hola Mundo'),
      ),
    );
  }
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Este paquete ayuda al manejo de transiciones entre pantalla de forma elegante y facil.

Homepage

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_route_transition_pcc