1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-08 23:58:46 +01:00
2022-09-17 20:35:45 +08:00

10 lines
241 B
Dart

import 'package:flutter/cupertino.dart';
import 'package:flutter/widgets.dart';
class GoSearchScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return const Center(child: Text('Coming Soon...'));
}
}