mirror of
https://github.com/git-touch/git-touch
synced 2025-02-02 08:56:54 +01:00
4f1e0441d2
closes #117
10 lines
236 B
Dart
10 lines
236 B
Dart
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...'));
|
|
}
|
|
}
|