adfadsf
This commit is contained in:
@@ -417,7 +417,7 @@ class _ProviderFormScreenState extends State<ProviderFormScreen> {
|
|||||||
BlocBuilder<ProviderFormCubit, ProviderFormState>(
|
BlocBuilder<ProviderFormCubit, ProviderFormState>(
|
||||||
builder: (context, state) {
|
builder: (context, state) {
|
||||||
// Se non ha un colore, usiamo il BlueGrey di default
|
// Se non ha un colore, usiamo il BlueGrey di default
|
||||||
final currentColorHex = state.provider?.colorHex ?? '#607D8B';
|
final currentColorHex = state.provider.colorHex ?? '#607D8B';
|
||||||
|
|
||||||
return Wrap(
|
return Wrap(
|
||||||
spacing: 12,
|
spacing: 12,
|
||||||
|
|||||||
@@ -280,7 +280,9 @@ class _RichOperationCard extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: Text(
|
child: Text(
|
||||||
operation.reference ?? 'Senza Riferimento',
|
operation.reference.isEmpty
|
||||||
|
? 'Nessuna Riferimento'
|
||||||
|
: operation.reference,
|
||||||
style: theme.textTheme.labelSmall?.copyWith(
|
style: theme.textTheme.labelSmall?.copyWith(
|
||||||
color: Colors.grey[600],
|
color: Colors.grey[600],
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user