demo_result_component.dart 501 B

123456789101112131415161718192021
  1. /*
  2. * fluro
  3. * Created by Yakka
  4. * https://theyakka.com
  5. *
  6. * Copyright (c) 2019 Yakka, LLC. All rights reserved.
  7. * See LICENSE for distribution and usage details.
  8. */
  9. import 'package:flutter/material.dart';
  10. class DemoResultComponent extends StatefulWidget {
  11. @override
  12. _DemoResultComponentState createState() => _DemoResultComponentState();
  13. }
  14. class _DemoResultComponentState extends State<DemoResultComponent> {
  15. @override
  16. Widget build(BuildContext context) {
  17. return Container();
  18. }
  19. }