Changed icon
This commit is contained in:
parent
0c00158c92
commit
577c2efcc8
1 changed files with 2 additions and 2 deletions
|
|
@ -395,7 +395,7 @@ class _FormulaScreenState extends State<FormulaScreen> {
|
|||
Expanded(
|
||||
child: isCategorical
|
||||
? DropdownButtonFormField<String>(
|
||||
value: _selectedValues[variable.name],
|
||||
initialValue: _selectedValues[variable.name],
|
||||
items: variable.values!
|
||||
.map((v) => DropdownMenuItem<String>(value: v, child: Text(v)))
|
||||
.toList(),
|
||||
|
|
@ -433,7 +433,7 @@ class _FormulaScreenState extends State<FormulaScreen> {
|
|||
const SizedBox(width: 8),
|
||||
if (variable.unit != null && !isCategorical)
|
||||
IconButton(
|
||||
icon: const Icon(Icons.swap_horiz),
|
||||
icon: const Icon(Icons.arrow_downward),
|
||||
tooltip: 'Solve for ${variable.name}',
|
||||
onPressed: () {
|
||||
_solveForVariable(variable);
|
||||
|
|
|
|||
Loading…
Reference in a new issue