24 lines
514 B
Dart
24 lines
514 B
Dart
import 'package:app/pb/account_info.pb.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class HomeScreen extends StatelessWidget {
|
|
HomeScreen({super.key, required this.account_info});
|
|
|
|
AccountInfo account_info;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: [
|
|
Text(
|
|
'Willkommen ${account_info.firstname}!',
|
|
style: const TextStyle(
|
|
fontSize: 30,
|
|
fontWeight: FontWeight.bold,
|
|
),
|
|
)
|
|
],
|
|
);
|
|
}
|
|
}
|