mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-22 15:26:30 +08:00
12 lines
247 B
Dart
12 lines
247 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class LinearProgressIndicatorDemo extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
width: 200.0,
|
|
child: LinearProgressIndicator(),
|
|
);
|
|
}
|
|
}
|