fluro/example/lib/components/demo/demo_result_component.dart

22 lines
527 B
Dart
Raw Normal View History

2018-04-05 17:07:43 -04:00
/*
* fluro
* A Posse Production
* http://goposse.com
* Copyright (c) 2018 Posse Productions LLC. All rights reserved.
* See LICENSE for distribution and usage details.
*/
2018-03-23 11:53:23 -04:00
import 'package:flutter/material.dart';
class DemoResultComponent extends StatefulWidget {
@override
_DemoResultComponentState createState() => new _DemoResultComponentState();
}
class _DemoResultComponentState extends State<DemoResultComponent> {
@override
Widget build(BuildContext context) {
return new Container(
);
}
}