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

22 lines
501 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() => _DemoResultComponentState();
2018-03-23 11:53:23 -04:00
}
class _DemoResultComponentState extends State<DemoResultComponent> {
@override
Widget build(BuildContext context) {
return Container();
2018-03-23 11:53:23 -04:00
}
2018-07-27 21:15:51 -04:00
}