Flutter Page Tranzitionz

pub package

A set of Page Route Transitions for simple and easy animations between different screens. Inspired by other packages on pub.dev.

Usage

import 'package:flutter_page_tranzitionz/flutter_page_tranzitionz.dart';

Navigator.of(context).push(
  FadeTranzition.bottomToTop(child: MyNextPage()),
);

Navigator.push(
  context,
  PopTranzition.rightToLeft(
      child: MyNextPage(),
      currentChild: context.widget,
    ),
);