Golo - App Flutter
  • 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
On this page

Was this helpful?

  1. Config Your App

Update the project name

1. pubspec.yaml: change the name to your_new_project_name

name: your_new_project_name_here // Golo
description: your_description_here // GetGolo.com
version: 1.0.0+5

2. Replace all packages imported by the new package name

Example:

import 'package:Golo/src/entity/City.dart';

to

import 'package:your_new_project_name_here/src/entity/City.dart';
PreviousFetch the packages for the project (important)NextUpdate the application display name

Last updated 5 years ago

Was this helpful?