Skip to content

Instantly share code, notes, and snippets.

@Gazer
Created April 25, 2019 17:57
Show Gist options
  • Save Gazer/6ddeef79ab8ac1cae807c561a5bf739d to your computer and use it in GitHub Desktop.
Save Gazer/6ddeef79ab8ac1cae807c561a5bf739d to your computer and use it in GitHub Desktop.
SliderWidget API
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
SliderWidget(
icon: Icons.arrow_forward,
text: "Deslizá para transferir",
color: Colors.red,
onSubmit: (Function onFinish, Function onError) async {
await pause(const Duration(seconds: 1));
onError();
},
),
SizedBox(height: 16.0,),
SliderWidget(
icon: Icons.arrow_forward,
text: "Go!",
color: Colors.green,
onSubmit: (Function onFinish, Function onError) async {
await pause(const Duration(seconds: 1));
onFinish();
},
)
],
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment