awesome_transitions 0.0.3 copy "awesome_transitions: ^0.0.3" to clipboard
awesome_transitions: ^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:awesome_transitions/awesome_transitions.dart';
import 'package:flutter/material.dart';


void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Material App',
      debugShowCheckedModeBanner: false,
      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 page'),
          color: Colors.white,
          onPressed: (){

            AwesomeTransitions(
              context: context, 
              child: Page2(),
              animation: AnimationType.fadeIn,
              // replacement: true
              // duration: Duration(seconds: 2)
            );
                        
          },
        ),
      ),
    );
  }
}

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

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

Homepage

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on awesome_transitions