1
0
mirror of https://github.com/git-touch/git-touch synced 2024-12-16 10:20:55 +01:00
git-touch-android-ios-app/lib/screens/repos.dart
2019-02-04 18:32:39 +08:00

15 lines
309 B
Dart

import 'package:flutter/material.dart';
/// Repos of user
class ReposScreen extends StatefulWidget {
@override
_ReposScreenState createState() => _ReposScreenState();
}
class _ReposScreenState extends State<ReposScreen> {
@override
Widget build(BuildContext context) {
return Container();
}
}