mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
19 lines
376 B
Dart
19 lines
376 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),
|
|
),
|
|
);
|
|
}
|
|
}
|