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

outdated

Este paquete te permitira insertar una transición cuando quieras navegar a otra pagina, actualmente tiene la transición de opacidad y la normal sin ningun efecto. Todo esto para mostrar la navegacion [...]

example/main.dart

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

class Page1 extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Page1'),
        centerTitle: true,
        backgroundColor: Colors.transparent,
      ),
      backgroundColor: Colors.blue,
      body: Center(
        child: MaterialButton(
          child: Text('Go to page2'),
          color: Colors.white,
          onPressed: () {  
            RouteTransitions(context: context, child: Page2());
          },
        )
     ),
   );
  }
}

class Page2 extends StatelessWidget {

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

Publisher

unverified uploader

Este paquete te permitira insertar una transición cuando quieras navegar a otra pagina, actualmente tiene la transición de opacidad y la normal sin ningun efecto. Todo esto para mostrar la navegacion de forma elegante y facil. This packages can you to insert a new transition when you can navigate to other page, in these moment has the teansition of opacity and the normal whit any efects. All these for show the navigation of form more elegant and easy.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on custom_route_transition_go