leo_change_page_transitions 0.0.1 copy "leo_change_page_transitions: ^0.0.1" to clipboard
leo_change_page_transitions: ^0.0.1 copied to clipboard

Package para animar el cambio de pagina a otra utilizando PageRouteBuilder.

example/main.dart

import 'package:flutter/material.dart';
import 'package:leo_change_page_transitions/leo_change_page_transitions.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': ( _ ) => Page1(), 
        'page2': ( _ ) => Page2(), 
      },
      
    );
  }
}


class Page1 extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Page 1'),
        backgroundColor: Colors.transparent,
      ),
      backgroundColor: Colors.blue,
      body: Center(
        child: MaterialButton(
          child: Text('Go to page2'),
          color: Colors.white,
          onPressed: () {

            RouteTransitions(
              context: context,
              child: Page2(),
              animation: AnimationType.fadeIn,
              duration: Duration( milliseconds: 100 ),
              replacement: true
            );

          }
        )
     ),
   );
  }
}



class Page2 extends StatelessWidget {

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

Publisher

unverified uploader

Package para animar el cambio de pagina a otra utilizando PageRouteBuilder.

Homepage

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on leo_change_page_transitions