1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-08 23:58:46 +01:00

10 lines
236 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) {
return Center(child: Text('Coming Soon...'));
}
}