immich_title_text.dart 513 B

1234567891011121314151617181920212223242526
  1. import 'package:flutter/material.dart';
  2. class ImmichTitleText extends StatelessWidget {
  3. final double fontSize;
  4. final Color? color;
  5. const ImmichTitleText({
  6. super.key,
  7. this.fontSize = 48,
  8. this.color,
  9. });
  10. @override
  11. Widget build(BuildContext context) {
  12. return Text(
  13. 'IMMICH',
  14. style: TextStyle(
  15. fontFamily: 'SnowburstOne',
  16. fontWeight: FontWeight.bold,
  17. fontSize: fontSize,
  18. color: color ?? Theme.of(context).primaryColor,
  19. ),
  20. );
  21. }
  22. }