Files
UUVPN/flutter/lib/widgets/bottom_block.dart
T
2023-06-25 11:50:55 +08:00

14 lines
275 B
Dart

import 'package:flutter/material.dart';
class BottomBlock extends StatelessWidget {
const BottomBlock({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
height: 100,
color: Colors.transparent,
);
}
}