1234567891011121314151617181920212223242526 |
- import 'package:flutter/material.dart';
- class ImmichTitleText extends StatelessWidget {
- final double fontSize;
- final Color? color;
- const ImmichTitleText({
- super.key,
- this.fontSize = 48,
- this.color,
- });
- @override
- Widget build(BuildContext context) {
- return Text(
- 'IMMICH',
- style: TextStyle(
- fontFamily: 'SnowburstOne',
- fontWeight: FontWeight.bold,
- fontSize: fontSize,
- color: color ?? Theme.of(context).primaryColor,
- ),
- );
- }
- }
|