我需要根据用户的屏幕大小添加填充,但是在添加此代码时,它显示的是无效的常量值,有人可以建议我替代或更好的解决方法。
padding: const EdgeInsets.all(MediaQuery.of(context).size.width/10),
答案 0 :(得分:1)
删除for i := 1 to n do begin
o := Ord(T1[i]); // Pick actual loop index value
p := i; // Store index
for k := i+1 to n do begin // Search for lowest character
if (Ord(T1[k]) < o) then begin
o := ord (T1[k]);
p := k;
end;
end;
// Swap the p and i index value, to put the * into the i index position
if (i <> p) then
T1[p] := T1[i];
T1[i] := '*';
T2[i] := Chr(o);
end;
,您应该会很好。
const