Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 857 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 857 Bytes

Flippo Navigation

pub package git package

Flippo Navigation- A Flutter Package for an animated navigation drawer.

How to use

import 'package:flippo_navigation/flippo_navigation.dart';

Create an animated navigation drawer with the following snippet:

new Flippo(
      mask: new Scaffold(
        backgroundColor: Colors.white,
      ),
      body: new Scaffold(
        backgroundColor: Colors.white,
      ),
      drawer: new Scaffold(
        backgroundColor: Colors.black,
      ),
    );