1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-16 03:20:58 +01:00

10 lines
242 B
Dart
Raw Normal View History

2021-01-23 19:38:05 +05:30
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
class GoSearchScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
2022-09-07 00:28:12 +08:00
return const Center(child: Text('Coming Soon...'));
2021-01-23 19:38:05 +05:30
}
}