Files
sendico/frontend/pweb/lib/pages/login/header.dart
Stephan D da57b1d2e0
Some checks failed
ci/woodpecker/push/billing_fees Pipeline was successful
ci/woodpecker/push/bff Pipeline was successful
ci/woodpecker/push/db Pipeline was successful
ci/woodpecker/push/chain_gateway Pipeline was successful
ci/woodpecker/push/fx_ingestor Pipeline was successful
ci/woodpecker/push/frontend Pipeline was successful
ci/woodpecker/push/fx_oracle Pipeline was successful
ci/woodpecker/push/nats Pipeline was successful
ci/woodpecker/push/ledger Pipeline was successful
ci/woodpecker/push/notification Pipeline was successful
ci/woodpecker/push/payments_orchestrator Pipeline was successful
ci/woodpecker/push/bump_version Pipeline failed
fixed providers initialization
2025-11-26 18:17:30 +01:00

26 lines
659 B
Dart

import 'package:flutter/material.dart';
import 'package:pweb/config/constants.dart';
import 'package:pweb/widgets/hspacer.dart';
import 'package:pweb/widgets/logo.dart';
import 'package:pweb/generated/i18n/app_localizations.dart';
class LoginHeader extends StatelessWidget {
const LoginHeader({super.key});
@override
Widget build(BuildContext context) => Row(
children: [
const ServiceLogo(size: 36),
const HSpacer(multiplier: 0.75),
Text(
'${AppConfig.appName} ${AppLocalizations.of(context)!.login}',
style: Theme.of(context).textTheme.titleLarge,
textAlign: TextAlign.center,
),
],
);
}