mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-08 14:07:49 -06:00
28 lines
707 B
Dart
28 lines
707 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class ConfigurationDoneIntroSlide extends StatelessWidget {
|
|
const ConfigurationDoneIntroSlide({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
//TODO: INTL
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
children: [
|
|
Text(
|
|
"All set up!",
|
|
style: Theme.of(context).textTheme.titleLarge,
|
|
),
|
|
Icon(
|
|
Icons.emoji_emotions_outlined,
|
|
size: 64,
|
|
),
|
|
Text(
|
|
"You've successfully configured Paperless Mobile! Press 'GO' to get started managing your documents.",
|
|
textAlign: TextAlign.center,
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|