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

outdated

A Flutter package with custom implementation of the Android Drawer

example/lib/main.dart

import 'package:example/home_screen.dart';
import 'package:flutter/material.dart';
import 'dart:ui' as ui;

import 'package:provider/provider.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {


  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Zoom Drawer Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
          primarySwatch: Colors.deepPurple,
          accentColor: Colors.deepPurpleAccent),
      home: ChangeNotifierProvider(
        create: (_) => MenuProvider(),
        child: HomeScreen(),
      ),
    );
  }
}
991
likes
40
pub points
98%
popularity

Publisher

verified publishermedyas.ml

A Flutter package with custom implementation of the Android Drawer

Repository (GitHub)
View/report issues
Contributing

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_zoom_drawer