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

22 lines
509 B
Dart
Raw Normal View History

/*
* fluro
* Created by Yakka
* https://theyakka.com
*
* Copyright (c) 2019 Yakka, 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) {
2018-07-27 21:15:51 -04:00
return new Container();
2018-03-23 11:53:23 -04:00
}
2018-07-27 21:15:51 -04:00
}