1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/ui/widgets/tour/last_pane.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),
),
);
}
}