1
0
mirror of https://github.com/git-touch/git-touch synced 2025-01-20 19:28:42 +01:00
git-touch-android-ios-app/lib/screens/repo.dart
2019-01-28 00:37:44 +08:00

20 lines
405 B
Dart

import 'package:flutter/material.dart';
class RepoScreen extends StatefulWidget {
final String owner;
final String name;
RepoScreen(this.owner, this.name);
@override
_RepoScreenState createState() => _RepoScreenState();
}
class _RepoScreenState extends State<RepoScreen> {
@override
Widget build(BuildContext context) {
return Container(
child: Text(widget.owner),
);
}
}