simulator
Flutter용(단순한) 기기 시뮬레이터. 다중 플랫폼 UI 개발을 쉽게 만듭니다
Flutter용(단순한) 기기 시뮬레이터. 다중 플랫폼 UI 개발을 쉽게 만듭니다
{"sdk":"flutter"}^0.4.4^2.2.2^1.0.6^2.1.2^1.5.0^6.2.4^0.4.2^2.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
Pub Publisher Pub Version
Warning: This is a work in progress and may contain bugs. Use at your own risk.
A device simulator for Flutter. Run your app on the desktop, and simulate a device of your choice. Perfect for rapid development of multi-platform user interfaces.
Image 1 Image 2
In my experience, developing a multi-platform app is a pain. You have to constantly switch between devices to see how your app looks and behaves. This is especially true for mobile gestures and keyboard input. This package aims to solve this problem by providing a way to simulate a device on the desktop. It's not perfect, but it's a start. I personally find that I'm much more productive when using this package.
Another benefit is that building and hot-refreshing the app is much faster on the desktop. This is especially true for complex UIs.
However, this package is not a replacement for testing on real devices. It's just a tool to make development easier.
MediaQuery and system locale control.In progress:
a and XL variants)pubspec.yaml:dependencies:
simulator: ^0.3.2
Note: this package only works in Debug mode. The entire code of the package should be tree-shaken away in Release mode.
main.simulator.dart:import 'package:simulator/simulator.dart';
void main() {
runSimulatorApp(MyApp());
}
Note: if you have code that uses FlutterWidgetsBinding.ensureInitialized(), you should replace it with SimulatorFlutterWidgetsBinding.ensureInitialized(). This makes sure that the simulator initializes its bindings.
Now you can run the simulator with flutter run -t lib/main.simulator.dart. Make sure that the simulator is ran for the desktop platform.
The minimum macOS deployment target is 10.15.0.
See https://github.com/macosui/macos_window_utils.dart?tab=readme-ov-file#getting-started for more information on how to change the minimum deployment target.
Allows you to take a screenshot of the simulated device (or just the app). By default, the screenshots are saved to the temporary directory.
Screenshot module
Allows you to pick a device to simulate. The device is picked from a list of supported devices.
Device module
Allows you to simulate the device keyboard. When the system call to show the keyboard is intercepted, the keyboard is shown in the simulator instead. You can choose between no keyboard, an iOS or an Android keyboard (or auto-detect based on the platform).
Keyboard module
Allows you to simulate mobile gestures with a mouse. The main feature is the conversion of mouse events to touch gestures in the simulator view. You can also simulate a zoom gesture by enabling it and holding the Ctrl key.
Gestures module
Shows the heap usage for all of the isolates in the VM. It also allows you to fire the memory pressure event (didHaveMemoryPressure()).
VM module
Allows you to enable various Flutter debug flags. You can enable the performance overlay, the debug banner, the repaint rainbow, and the slow animations.
Additionally, includes some custom debugging flags:
Pointer area highlight - highlights and shows the size of the pointer area of GestureDetector widgets when hovered.
Visualize view paddings - shows the view paddings and insets applied to the app.
Debug module
Allows you to control the system locale. This is work-in-progress and will be improved.
Locale module
Allows you to set the MediaQuery properties for the app. This is transparent to the app and appears like host device properties.
MediaQuery module
More documentation soon. If curious, check the lib/src/modules directory.
For any questions, feel free to contact me at: