22 lines
611 B
Dart
22 lines
611 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
Widget buildClearanceField(String label, String value) {
|
|
return Card(
|
|
margin: const EdgeInsets.symmetric(vertical: 10),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(12.0),
|
|
child: TextFormField(
|
|
initialValue: value,
|
|
readOnly: true,
|
|
textAlign: TextAlign.center,
|
|
style: const TextStyle(fontSize: 24),
|
|
decoration: InputDecoration(
|
|
labelText: label,
|
|
border: InputBorder.none,
|
|
labelStyle: const TextStyle(fontSize: 18, fontWeight: FontWeight.bold),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|