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',
|
2024-05-22 22:22:44 +00:00
|
|
|
style: Theme.of(context).textTheme.headlineLarge,
|
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.',
|
2024-05-22 22:22:44 +00:00
|
|
|
style: Theme.of(context).textTheme.labelMedium),
|
2021-06-04 09:34:25 +00:00
|
|
|
)
|
2018-09-15 15:01:45 +00:00
|
|
|
],
|
2021-06-04 09:34:25 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
2018-09-15 15:01:45 +00:00
|
|
|
}
|
|
|
|
}
|