Skip to content

Instantly share code, notes, and snippets.

View NdegwaJulius's full-sized avatar
🎯
Flutter | Javascript | Ruby On Rails |

NdegwaJulius NdegwaJulius

🎯
Flutter | Javascript | Ruby On Rails |
View GitHub Profile
@NdegwaJulius
NdegwaJulius / version-check.dart
Created February 25, 2024 14:51 — forked from naumanahmed19/version-check.dart
Flutter Force Update IOS and Android App Version
//Prompt users to update app if there is a new version available
//Uses url_launcher package
import 'package:url_launcher/url_launcher.dart';
const APP_STORE_URL =
'https://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftwareUpdate?id=YOUR-APP-ID&mt=8';
const PLAY_STORE_URL =
'https://play.google.com/store/apps/details?id=YOUR-APP-ID';