QLutter is a versatile cross-platform development toolkit. This guide covers everything you need to get started—from installation to leveraging advanced features for production-ready apps.
Before installing QLutter, ensure your system meets the following requirements:
Download the latest stable release from the official QLutter repository.
qlutter/bin
directory is added to your system’s PATH environment variable.Tip: Detailed platform-specific installation guides with screenshots can be found in the QLutter documentation.
Q: Command ‘qlutter’ not found?
A: Ensure you’ve added QLutter to your PATH and restarted your terminal.
Q: Permission denied errors?
A: Try running the installer or terminal as an administrator (Windows) or with sudo
(macOS/Linux).
Q: Missing dependencies?
A: Install Python 3.8+ and Git. Refer to your OS’s package manager or official Python downloads.
In your terminal, run:
lua
복사편집
qlutter create my_first_app
This command generates a new project folder named my_first_app
.
/lib
– Main source code/assets
– Images, fonts, and other assets/build
– Compiled output/test
– Unit and widget testsqlutter.yaml
– Project configuration fileNavigate into your project directory and start the development server:
arduino
복사편집
cd my_first_app
qlutter run
By default, this launches the sample app in your system’s default simulator or emulator.
dart
복사편집
import 'package:qlutter/widgets.dart';
QButton
, QListView
, and QTextInput
.python
복사편집
data = qlutter.api.get('https://api.example.com/items')
display(data)
nginx
복사편집
qlutter debug
cpp
복사편집
qlutter generate module my_module
/lib/modules/
.nginx
복사편집
qlutter build web
nginx
복사편집
qlutter build android
qlutter build ios
nginx
복사편집
qlutter build windows
qlutter build macos
arduino
복사편집
qlutter build --release