Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/raj457036/shrink_sidemenu_flutter

A Side Menu plugin for flutter and compatible with liquid ui for flutter
https://github.com/raj457036/shrink_sidemenu_flutter

flutter flutter-drawer liquid liquid-flutter sidemenu

Last synced: about 9 hours ago
JSON representation

A Side Menu plugin for flutter and compatible with liquid ui for flutter

Awesome Lists containing this project

README

        

# Liquid Shrink Side Menu

A Side Menu plugin for flutter and compatible with [liquid ui](https://pub.dev/packages/liquid_ui)

Liquid Ui Shrink Side Menu for flutter

## Side Menu Types

There are 8 configuration of Liquid shrink side menu

#### 1. SlideNRotate

SlideNRotate

#### 2. SlideNRotate Inverse

SlideNRotate Inverse

#### 3. ShrinkNRotate

ShrikNRotate

#### 4. ShrinkNRotate Inverse

ShrinkNRotate Inverse

#### 5. Slide

Slide

#### 6. Slide Inverse

Slide Inverse

#### 7. ShrinkNSlide

ShrinkNSlide

#### 8. ShrinkNSlide Inverse

ShrinkNSlide

## Getting Started

- Step 1: Add **shrink_sidemenu** to **pubspec.yaml**

```yaml
dependencies:
flutter:
sdk: flutter
liquid_ui: // for extra features

shrink_sidemenu: // Liquid Shrink Sidemenu is not dependent on liquid
```

- Step 2: Wrap **Scaffold** with **SideMenu**

```dart

final GlobalKey _sideMenuKey = GlobalKey();

SideMenu(
key: _sideMenuKey,
menu: buildMenu(),
type: SideMenuType.slideNRotate, // check above images
child: Scaffold(
appBar: AppBar(
leading: IconButton(
icon: Icon(Icons.menu),
onPressed: () {
final _state = _sideMenuKey.currentState;
if (_state.isOpened)
_state.closeSideMenu(); // close side menu
else
_state.openSideMenu();// open side menu
},
),
...
),
);
```

# About liquid ui for flutter

Liquid is an open source UI toolkit for developing cross platform apps in Flutter. Quickly create apps for Android, IOS, Web or Desktop with our powerful grid system, text processor, forms, extensive prebuilt components and dozens of utilities.
**Visit: [Liquid For Flutter](https://pub.dev/packages/liquid_ui)**

# Author

[Raj Singh](https://www.linkedin.com/in/raj457036/)