We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6ecad9 commit 03af4d0Copy full SHA for 03af4d0
lib/example/loadingDataIndicator.dart
@@ -0,0 +1,19 @@
1
+import 'package:flutter/material.dart';
2
+import 'package:flutter_components/components/loading_data_indicator.dart';
3
+import 'package:flutter_components/components/ms_accordian.dart';
4
+import 'package:flutter_components/components/circle_avatar_number.dart';
5
+
6
+class LoadingDataIndicatorExample extends StatefulWidget {
7
+ @override
8
+ _LoadingDataIndicatorExampleState createState() => _LoadingDataIndicatorExampleState();
9
+}
10
11
+class _LoadingDataIndicatorExampleState extends State<LoadingDataIndicatorExample> {
12
13
+ Widget build(BuildContext context) {
14
+ return Scaffold(
15
+ appBar: AppBar(title: Text('Loading Data Indicator Example')),
16
+ body: LoadingDataIndicator(),
17
+ );
18
+ }
19
0 commit comments