git-touch-android-ios-app/lib/screens/go_search.dart

10 lines
241 B
Dart
Raw Normal View History

2021-01-23 15:08:05 +01:00
import 'package:flutter/cupertino.dart';
2022-09-17 14:35:45 +02:00
import 'package:flutter/widgets.dart';
2021-01-23 15:08:05 +01:00
class GoSearchScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
2022-09-06 18:28:12 +02:00
return const Center(child: Text('Coming Soon...'));
2021-01-23 15:08:05 +01:00
}
}