Golo - App Flutter
Buy Golo WordPress
Buy Golo Laravel
Search…
Introductions
How to install Flutter?
Getting Started
Config Your App
Update app setting (pubspec.yaml )
Fetch the packages for the project (important)
Update the project name
Update the application display name
Update API Url
Setup Multi-Language
Copy Flutter Framework to iOS Folder
Support
FAQ
Can not run on device, but simulator can work well
Could not find the built application bundle at build/ios/iphoneos/Runner.app
Powered By
GitBook
Update API Url
Laravel
Open: lib/modules/services/platform/lara/lara.dart
1
class Lara extends PlatformBase {
2
static const String baseUrlImage = "https://yourdomain/uploads/";
3
4
Lara(): super(){
5
baseUrl = "https://yourdomain/api/app";
6
type =PlatformType.lara;
7
}
8
}
Copied!
baseUrlImage
: base url to get image
baseUrl
: base url to get data
WordPress
Open: lib/modules/services/platform/wp/wp.dart
1
class WP extends PlatformBase {
2
WP() : super() {
3
baseUrl = "https://yourdomain/wp-json/wp/v2/";
4
}
5
}
Copied!
baseUrl
: base url to get data
For more REST API Handbook:
https://developer.wordpress.org/rest-api/reference/
Config Your App - Previous
Update the application display name
Next - Config Your App
Setup Multi-Language
Last modified
8mo ago
Copy link
Contents
Laravel
WordPress