mirror of
https://github.com/Myzel394/quid_faciam_hodie.git
synced 2025-06-19 15:45:26 +02:00
18 lines
386 B
Dart
18 lines
386 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class SheetIndicator extends StatelessWidget {
|
|
const SheetIndicator({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
width: 100,
|
|
height: 5,
|
|
decoration: BoxDecoration(
|
|
color: Colors.white24,
|
|
borderRadius: BorderRadius.circular(10),
|
|
),
|
|
);
|
|
}
|
|
}
|