on_click

Last updated:

0 purchases

on_click Image
on_click Images
Add to Cart

Description:

on click

On Click #

Getting started #
To install, onpen pubspec.yaml file and add to dependencies
dependencies:
...
on_click ^1.1.4
copied to clipboard
Or open terminal and write following command
flutter pub add on_click
copied to clipboard
Usage #
After installing import package
import 'package:on_click/on_click.dart';
copied to clipboard
Container(
height: 100,
width: 250,
color: Colors.amber,
child:const Text('Click here'),
).onClick(() {
print('Clicked');
})
copied to clipboard
to use multiple functions simultaneously
Container(
height: 100,
width: 250,
color: Colors.amber,
child:const Text('Click here'),
).onClick(() {
print('Clicked');

}).onDoubleClick((){
print("Double click");
})
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.