mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-26 14:59:22 +00:00
31 lines
861 B
Dart
31 lines
861 B
Dart
import 'package:comunic/ui/widgets/tour/fixed_tour_size_text_area.dart';
|
|
import 'package:comunic/utils/intl_utils.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
/// First tour pane
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class FirstTourPane extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[
|
|
Spacer(flex: 3),
|
|
Text(
|
|
"Comunic",
|
|
style: TextStyle(fontSize: 25),
|
|
),
|
|
Spacer(flex: 2),
|
|
FixedTourSizeTextArea(tr(
|
|
"Welcome to Comunic, the social network that respect your privacy!")),
|
|
Spacer(flex: 1),
|
|
FixedTourSizeTextArea(tr(
|
|
"Let's configure a few things and present you some features of the network...")),
|
|
Spacer(flex: 3),
|
|
],
|
|
);
|
|
}
|
|
}
|