1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-15 11:00:45 +01:00
2022-09-07 15:28:12 +08:00

10 lines
242 B
Dart

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