|
|
@@ -94,7 +94,7 @@ class App extends StatelessWidget {
|
|
|
message: await DeviceManager.getDeviceId(),
|
|
|
);
|
|
|
},
|
|
|
- child: const SizedBox.shrink(), // 不显示任何东西
|
|
|
+ child: const SizedBox(width: 100, height: 100),
|
|
|
),
|
|
|
),
|
|
|
Positioned(
|
|
|
@@ -107,7 +107,7 @@ class App extends StatelessWidget {
|
|
|
onTripleTap: () async {
|
|
|
IXDeveloperTools.show();
|
|
|
},
|
|
|
- child: const SizedBox.shrink(), // 不显示任何东西
|
|
|
+ child: const SizedBox(width: 100, height: 100),
|
|
|
),
|
|
|
),
|
|
|
// if (Configs.debug)
|