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

28 lines
840 B
Dart
Raw 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(
2019-03-29 17:22:35 +00:00
padding: EdgeInsets.all(16),
child: Center(
child: Column(
2018-09-15 15:01:45 +00:00
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
2019-03-29 17:22:35 +00:00
Container(
2018-09-15 15:01:45 +00:00
padding: EdgeInsets.only(top: 32.0),
2019-03-29 17:22:35 +00:00
child: Text(
2018-09-15 15:01:45 +00:00
'Welcome to Vikunja',
style: Theme.of(context).textTheme.headline,
),
),
2019-03-29 17:22:35 +00:00
Padding(
padding: EdgeInsets.symmetric(vertical: 10),
child: Text('Please select a namespace by tapping the ☰ icon.',
style: Theme.of(context).textTheme.subhead),
)
2018-09-15 15:01:45 +00:00
],
2019-03-29 17:22:35 +00:00
)));
2018-09-15 15:01:45 +00:00
}
}