This repository has been archived on 2022-04-20. You can view files and clone it, but cannot push or open issues or pull requests.
app/lib/fragments/namespace.dart

25 lines
574 B
Dart
Raw Normal View History

2018-09-15 15:01:45 +00:00
import 'package:flutter/material.dart';
class NamespaceFragment extends StatelessWidget {
final String namespace;
NamespaceFragment({this.namespace});
2018-09-15 15:01:45 +00:00
@override
Widget build(BuildContext context) {
return new Center(
child: new Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
new Container(
child: new Text(
'Namespace: $namespace',
style: Theme.of(context).textTheme.title,
),
),
new Text('You\'ve selected a namespace!')
],
));
2018-09-15 15:01:45 +00:00
}
}