Files
rog_app/lib/pages/city/city_page.dart

10 lines
211 B
Dart
Raw Normal View History

2022-07-23 19:28:35 +05:30
import 'package:flutter/material.dart';
class CityPage extends StatelessWidget {
const CityPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container();
}
}