1bf69048f3
update ios project
14 lines
275 B
Dart
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,
|
|
);
|
|
}
|
|
}
|