-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dart
47 lines (43 loc) · 1.06 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import 'custom_percentage_widget.dart';
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: "Custom Circular Loader Demo",
home: Scaffold(
appBar: AppBar(
title: Text("Custom Circular Loader Demo"),
),
body: Container(
child: Center(
child: loader,
),
),
),
);
}
}
Widget loader = CustomCircularLoader(
coveredPercent: 65,
circleHeader: "Total",
circleSize: 200.0,
circleWidth: 5.0,
headerInBottom: true,
animationDuration: 1000,
circleColor: Colors.grey[100],
coveredCircleColor: Colors.red,
coveredPercentStyle: TextStyle(
fontSize: 44.0,
fontWeight: FontWeight.w600,
color: Colors.red
),
circleHeaderStyle: TextStyle(
fontSize: 22.0,
fontWeight: FontWeight.w400,
color: Colors.grey[900]
),
);