A slide puzzle built for Flutter Challenge.
Built by XPEHO.
To run the project either use the launch configuration in VSCode/Android Studio/IntelliJ or use the following command:
$ flutter run -d chrome
This project relies on flutter_localizations and follows the official internationalization guide for Flutter.
To add a new localizable string, open the app_en.arb
file at lib/l10n/arb/app_en.arb
.
{
"team_name": "Xpeho mobile",
"@team_name": {
"description": "Team name"
}
}
Available platforms :
- Web
- IOS
- Android
- MacOS
- Windows
Coming soon Linux and ... WatchOS
If you use a MacOS machine, you can build the app for arm64 using the following command:
$ sudo arch -x86_64 gem install ffi
$ cd macos # or ios
$ arch -x86_64 pod install
$ cd ..
$ flutter build macos --debug # or flutter run -d macos
This commands will build the macOS app for x86_64 architecture and will run the app using Rosetta.