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
2018-09-15 17:01:45 +02:00

25 lines
620 B
Dart

import 'package:flutter/material.dart';
class NamespaceFragment extends StatelessWidget {
final String namespace;
NamespaceFragment({this.namespace});
@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!')
],
));
}
}