1
0
mirror of https://github.com/go-vikunja/app synced 2024-06-05 12:09:52 +00:00
app-mirror-github/lib/pages/placeholder.dart

30 lines
849 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(
2021-06-04 09:34:25 +00:00
padding: EdgeInsets.all(16),
child: Center(
child: Column(
2018-09-15 15:01:45 +00:00
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
2021-06-04 09:34:25 +00:00
Container(
2018-09-15 15:01:45 +00:00
padding: EdgeInsets.only(top: 32.0),
2021-06-04 09:34:25 +00:00
child: Text(
2018-09-15 15:01:45 +00:00
'Welcome to Vikunja',
2021-06-04 09:34:25 +00:00
style: Theme.of(context).textTheme.headline5,
2018-09-15 15:01:45 +00:00
),
),
2021-06-04 09:34:25 +00:00
Padding(
padding: EdgeInsets.symmetric(vertical: 10),
child: Text('Please select a namespace by tapping the ☰ icon.',
style: Theme.of(context).textTheme.subtitle1),
)
2018-09-15 15:01:45 +00:00
],
2021-06-04 09:34:25 +00:00
),
),
);
2018-09-15 15:01:45 +00:00
}
}