mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-19 00:04:22 +01:00
14 lines
309 B
Dart
14 lines
309 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
const centerLoading = Center(child: CircularProgressIndicator());
|
|
|
|
const centerSizedLoading = SizedBox(
|
|
width: 77,
|
|
height: 77,
|
|
child: Center(
|
|
child: CircularProgressIndicator(),
|
|
),
|
|
);
|
|
|
|
final loadingIcon = IconButton(onPressed: () {}, icon: centerLoading);
|