Files
MrbWebLibre/app/lib/features/onboarding/presentation/pages/welcome.dart
T
2025-06-14 23:33:24 +02:00

24 lines
544 B
Dart

import 'package:flutter/material.dart';
class WelcomePage extends StatelessWidget {
const WelcomePage({super.key});
@override
Widget build(BuildContext context) {
return Column(
children: [
FractionallySizedBox(
widthFactor: 0.5,
child: Image.asset('assets/icon/icon.png'),
),
Text(
'The Privacy-Focused Browser',
softWrap: true,
textAlign: TextAlign.center,
style: Theme.of(context).textTheme.headlineLarge,
),
],
);
}
}