| 123456789101112131415161718192021 |
- /*
- * fluro
- * Created by Yakka
- * https://theyakka.com
- *
- * Copyright (c) 2019 Yakka, LLC. All rights reserved.
- * See LICENSE for distribution and usage details.
- */
- import 'package:flutter/material.dart';
- class DemoResultComponent extends StatefulWidget {
- @override
- _DemoResultComponentState createState() => _DemoResultComponentState();
- }
- class _DemoResultComponentState extends State<DemoResultComponent> {
- @override
- Widget build(BuildContext context) {
- return Container();
- }
- }
|