flutter/examples/flutter_view/lib/main.dart
Sarah Zakarias 43281de36b Add flutter_view sample (#8486)
* Add flutter_view sample

* Removed platform_services files

* Addressed comments

* update README.md

* Addressed comments.
2017-03-09 12:53:01 +01:00

86 lines
2.1 KiB
Dart

import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
void main() {
runApp(new FlutterView());
}
class FlutterView extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: 'Flutter View',
theme: new ThemeData(
primarySwatch: Colors.grey,
),
home: new MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => new _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
static const String _channel = "increment";
static const String _emptyMessage = "";
int _counter = 0;
Future<String> handlePlatformIncrement(String message) async {
_incrementCounter();
return _emptyMessage;
}
void _incrementCounter() {
setState(() {
_counter++;
});
}
void _sendFlutterIncrement() {
PlatformMessages.sendString(_channel, _emptyMessage);
}
@override
Widget build(BuildContext context) {
PlatformMessages.setStringMessageHandler(_channel,
handlePlatformIncrement);
return new Scaffold(
body: new Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
new Expanded(
child: new Center(
child: new Text(
'Platform button tapped $_counter time${ _counter == 1 ? '' : 's' }.',
style: new TextStyle(fontSize: 17.0))
),
),
new Container(
padding: const EdgeInsets.only(bottom: 15.0, left: 5.0),
child: new Row(
children: <Widget>[
new Image.asset('assets/flutter-mark-square-64.png', scale: 1.5),
new Text('Flutter', style: new TextStyle(fontSize: 30.0)),
],
),
),
],
),
floatingActionButton: new FloatingActionButton(
onPressed: _sendFlutterIncrement,
child: new Icon(Icons.add),
),
);
}
}