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/pages/placeholder.dart

24 lines
732 B
Dart
Raw Permalink Normal View History

2018-09-15 15:01:45 +00:00
import 'package:flutter/material.dart';
2019-03-16 13:29:00 +00:00
class PlaceholderPage extends StatelessWidget {
2018-09-15 15:01:45 +00:00
@override
Widget build(BuildContext context) {
return new Container(
padding: EdgeInsets.only(left: 16.0),
child: new Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
new Container(
padding: EdgeInsets.only(top: 32.0),
child: new Text(
'Welcome to Vikunja',
style: Theme.of(context).textTheme.headline,
),
),
2019-03-16 13:29:00 +00:00
new Text('Please select a namespace by tapping the ☰ icon.',
2018-09-15 15:01:45 +00:00
style: Theme.of(context).textTheme.subhead),
],
));
}
}