mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-23 05:19:22 +00:00
19 lines
375 B
Dart
19 lines
375 B
Dart
|
import 'package:comunic/utils/intl_utils.dart';
|
||
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
/// Last tour pane
|
||
|
///
|
||
|
/// @author Pierre Hubert
|
||
|
|
||
|
class LastTourPane extends StatelessWidget {
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Center(
|
||
|
child: Text(
|
||
|
tr("The application is yours"),
|
||
|
style: TextStyle(fontSize: 25),
|
||
|
),
|
||
|
);
|
||
|
}
|
||
|
}
|