Installation
Get Witflo up and running on your device in minutes.
System Requirements
🍎 macOS
macOS 10.15 (Catalina) or later
🪟 Windows
Windows 10 or later
🐧 Linux
Modern distribution (X11/Wayland)
📱 iOS
iOS 13.0 or later
🤖 Android
Android 5.0 (API 21) or later
Download & Install
Desktop Applications
macOS
- Download the latest
.dmgfrom GitHub Releases - Open the DMG file
- Drag Witflo to your Applications folder
- Launch from Applications
First Launch
macOS may show a security warning since the app is not yet notarized. Right-click the app and select "Open", then click "Open" in the dialog.
Windows
- Download
Witflo-Setup.exefrom GitHub Releases - Run the installer
- Follow the installation wizard
- Launch from Start Menu or Desktop
Windows Defender
Windows Defender may show a warning since the app is not signed. Click "More info" → "Run anyway" to proceed.
Linux
Ubuntu/Debian (.deb)
bash
wget https://github.com/nativewit/witflo/releases/latest/download/witflo.deb
sudo dpkg -i witflo.debUniversal (AppImage)
bash
wget https://github.com/nativewit/witflo/releases/latest/download/Witflo.AppImage
chmod +x Witflo.AppImage
./Witflo.AppImageRequired dependencies:
bash
sudo apt-get install libsecret-1-dev libsodium-devMobile Applications
Coming Soon
- iOS: App Store release planned
- Android: Google Play and F-Droid releases planned
Mobile apps are currently in beta. Check GitHub Releases for beta builds.
Build from Source
Want to build Witflo yourself? Here's how.
Prerequisites
Required:
- Flutter SDK 3.38+
- FVM (recommended for version management)
- Git
Platform-specific:
- macOS/iOS: Xcode 14+
- Android: Android Studio with SDK
- Linux: Build essentials, GTK 3.0
- Windows: Visual Studio 2019+
Clone & Setup
bash
# Clone repository
git clone https://github.com/nativewit/witflo.git
cd witflo/witflo
# Install Flutter version with FVM
fvm install
fvm use
# Get dependencies
fvm flutter pub getRun Development Build
bash
# macOS
fvm flutter run -d macos
# Linux
fvm flutter run -d linux
# Windows
fvm flutter run -d windows
# iOS (requires Mac + Xcode)
fvm flutter run -d ios
# Android
fvm flutter run -d android
# Web
fvm flutter run -d chromeBuild Release
bash
# macOS
fvm flutter build macos --release
# Linux
fvm flutter build linux --release
# Windows
fvm flutter build windows --release
# iOS
fvm flutter build ios --release
# Android APK
fvm flutter build apk --release
# Android App Bundle
fvm flutter build appbundle --release
# Web
fvm flutter build web --releaseTroubleshooting
macOS: "App is damaged"
bash
xattr -cr /Applications/Witflo.appLinux: Missing Libraries
bash
sudo apt-get install -fBuild Fails
- Check Flutter version:
flutter --version - Run diagnostics:
flutter doctor - Clean and rebuild:bash
flutter clean flutter pub get flutter run
Still Having Issues?
Report an issue on GitHub with:
- Your OS and version
- Flutter version (
flutter --version) - Error logs
- Steps to reproduce