Skip to content

Commit 03af4d0

Browse files
author
ProgrammerHasan
committed
LoadingDataIndicatorExample
1 parent e6ecad9 commit 03af4d0

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
@override
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

Comments
 (0)