1
0
mirror of https://github.com/git-touch/git-touch synced 2025-02-22 06:17:40 +01:00
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();
}
}