mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-09 02:07:58 -06:00
22 lines
398 B
Dart
22 lines
398 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TextPlaceholder extends StatelessWidget {
|
|
final double length;
|
|
final double fontSize;
|
|
|
|
const TextPlaceholder({
|
|
super.key,
|
|
required this.length,
|
|
required this.fontSize,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
color: Colors.white,
|
|
width: length,
|
|
height: fontSize,
|
|
);
|
|
}
|
|
}
|