10 lines
211 B
Dart
10 lines
211 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class CityPage extends StatelessWidget {
|
|
const CityPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container();
|
|
}
|
|
} |