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

10 lines
242 B
Dart
Raw Normal View History

2021-01-23 15:08:05 +01:00
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
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
}
}