Skip to content

Instantly share code, notes, and snippets.

@zayngdev
Created June 13, 2019 15:31
Show Gist options
  • Select an option

  • Save zayngdev/3dfc7bc8a792be7a736b46087b44bf9a to your computer and use it in GitHub Desktop.

Select an option

Save zayngdev/3dfc7bc8a792be7a736b46087b44bf9a to your computer and use it in GitHub Desktop.
Flutter Call Jar Method Client Code
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Call Jar Method',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new RaisedButton(
child: new Text('Click Me'),
onPressed: clickMe,
),
],
),
),
);
}
Future<Null> clickMe() async {
print("Yeap");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment