// Flutter imports: import 'package:flutter/material.dart'; // Project imports: import 'package:invoiceninja_flutter/ui/app/form_card.dart'; class AppHeader extends StatelessWidget { const AppHeader({ required this.label, required this.value, this.secondLabel, this.secondValue, this.message, }); final String label; final String? value; final String? secondLabel; final String? secondValue; final String? message; @override Widget build(BuildContext context) { final textColor = Theme.of(context).textTheme.bodyLarge!.color; Widget _value1() { return Column( crossAxisAlignment: CrossAxisAlignment.start, mainAxisSize: MainAxisSize.min, children: [ Text(label, style: TextStyle( fontSize: 16.0, color: textColor!.withOpacity(.65), )), SizedBox( height: 8, ), FittedBox( child: Text( (value ?? '').isEmpty ? ' ' : value!, style: TextStyle( fontSize: 30, ), ), ) ], ); } Widget _value2() { return Column( crossAxisAlignment: CrossAxisAlignment.start, mainAxisSize: MainAxisSize.min, children: [ Text(secondLabel!, style: TextStyle( fontSize: 16.0, color: textColor!.withOpacity(.65), )), SizedBox( height: 8, ), FittedBox( child: Text( (secondValue ?? '').isEmpty ? ' ' : secondValue!, style: TextStyle( fontSize: 30, ), ), ) ], ); } return FormCard( children: [ Row( children: [ Expanded(child: _value1()), if ((secondValue ?? '').isNotEmpty) ...[ SizedBox(width: 8), Expanded(child: _value2()), ], ], ), if (message != null) Padding( padding: const EdgeInsets.only(top: 16), child: Text(message!), ) ], ); } }