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

https://github.com/allexcd/angulardart_custom_swipe

AngularDart Swipe Decorator
https://github.com/allexcd/angulardart_custom_swipe

Last synced: about 1 year ago
JSON representation

AngularDart Swipe Decorator

Awesome Lists containing this project

README

          

# angulardart_custom_swipe

AngularDart Swipe Decorator

Installation
-------------------------------

Add "angulardart_custom_swipe" in pubspec.yaml file:

```dart
dependencies:
angulardart_custom_swipe: any
```

then use pub to get the dependencies

How to use
--------------------------------
Import the module in your main.dart file

```dart
import 'package:angulardart_custom_swipe/angulardart_custom_swipe.dart';
```

Add custom swipe decorator to the list of modules

```dart
class AppModule extends Module {
AppModule() {
bind(customSwipe);
}
}
```

Use the decorator where you need it:

```dart

Swipe on this container

```

See examples provided on GitHub (https://github.com/allexcd/angulardart_custom_swipe).
Load them in Dart Editor or WebStorm and open them in default or Dartium browsers.