mirror of
https://github.com/flutter/samples.git
synced 2026-04-19 21:41:43 +00:00
14 lines
384 B
Dart
14 lines
384 B
Dart
import 'package:flutter/cupertino.dart';
|
|
|
|
class ActivityIndicatorPage extends StatelessWidget {
|
|
const ActivityIndicatorPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return const CupertinoPageScaffold(
|
|
navigationBar: CupertinoNavigationBar(middle: Text('Activity Indicator')),
|
|
child: Center(child: CupertinoActivityIndicator()),
|
|
);
|
|
}
|
|
}
|