mirror of
https://github.com/simon-ding/polaris.git
synced 2026-06-06 10:07:45 +08:00
fix
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class MyProgressIndicator extends StatelessWidget {
|
||||
double size;
|
||||
Color? color;
|
||||
double? value;
|
||||
final double size;
|
||||
final Color? color;
|
||||
final double? value;
|
||||
|
||||
MyProgressIndicator({super.key, this.size = 30, this.color, this.value});
|
||||
const MyProgressIndicator({super.key, this.size = 30, this.color, this.value});
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Center(
|
||||
|
||||
Reference in New Issue
Block a user