Full Screen menu for Flutter apps

  Menu, UI, Widgets

Info: Full-screen menu for Flutter apps to give a user a broad variety of variants in a beautiful way.

Installing:

In your pubspec.yaml

dependencies:
  full_screen_menu: ^0.1.1
import 'package:full_screen_menu/full_screen_menu.dart';

Basic Usage:

    FullScreenMenu.show(
      context,
      items: [
        FSMenuItem(
          icon: Icon(Icons.ac_unit, color: Colors.white),
          text: Text('Make colder'),
          onTap: () => print('Cool package check');
        ),
        FSMenuItem(
          icon: Icon(Icons.wb_sunny, color: Colors.white),
          text: Text('Make hotter'),
        ),
      ],
    );

Download Flutter Full Screen Menu Source Code on GitHub

https://github.com/yako-dev/flutter-full-screen-menu