Open-Source Festival-app written in Flutter for iOS & Android (and possibly web).
We don't bite... And we would love to have you onboard! π
If you want to join us in creating awesome stuff, connect with us on Discord. You are also welcome to just hang around. π
https://app.zenhub.com/workspaces/impuls-5e1f68bc7fc3f65df8ab07e6
Flutter is the glue that make creating a universal app (iOS + Android) possible. Check it out , it's pretty awesome.
git clone [email protected]:kodekameratene/impuls-app-flutter.git
cd impuls-app-flutter
flutter pub get
flutter run
Replace the icon.png
located assets/images/icon.png
& run the following command.
flutter pub run flutter_launcher_icons:main
Replace the splash.png
located assets/images/splash.png
& run the following command.
flutter pub run flutter_native_splash:create
Try to keep the dimensions the same, so that it will show on all device-resolutions. The current one uses an iPhone SE as a baseline.
Make sure to upload the image with an alpha and change the background color in pubspec.yaml
.
flutter_native_splash:
image: assets/images/splash.png
color: "#021f2d" <- Change this to your favorite background color
Here is the folder structure of our Flutter app. Flutter has generated an Android and iOS folder. If you open it you will see that they are normal ios & android projects.
But since we use Flutter, we mostly care about the lib
-folder.
.
βββ android
βΒ Β βββ app
βΒ Β βββ gradle
βββ assets
βΒ Β βββ images
βββ build
βΒ Β βββ flutter_assets
βΒ Β βββ ios
βββ ios
βΒ Β βββ Flutter
βΒ Β βββ Runner
βΒ Β βββ Runner.xcodeproj
βΒ Β βββ Runner.xcworkspace
βββ lib
βΒ Β βββ models
βΒ Β βββ pages
βΒ Β βββ providers
βΒ Β βββ requests
βΒ Β βββ views
βΒ Β βββ widgets
βββ resources
βββ test
βββ web
Let's take a closer look at the lib
-folder.
lib
βββ main.dart
βββ models
βββ pages
βββ providers
βββ requests
βββ views
βββ widgets
Right inside the lib
-folder you find the main.dart. This is where the whole app gets setup and started.
You can se that we are wiring up our Providers at the root build-method of our app. This makes it easy for our widgets to share some state. Take a look at this video by Paul Halliday for an introduction to providers.
https://www.youtube.com/watch?v=8II1VPb-neQ
He is here also talking about bloc, but I don't think he actually is using the bloc-pattern... Anyways. It's a great video that made Providers easy for me to understand.
A model is a class that represents the data we want to show in the app. It helps us in making sure that we use our data in a way that makes sense.
That was a bit abstract... Talk to Henry if you have any questions. Or update this readme with a better explanation. Thank you.
models
βββ Arrangement.dart
βββ Event.dart
βββ InfoPost.dart
βββ NewsPost.dart
Tip: Use the amazing JSON to Dart-converter by Javier Lecuona to generate dart classes from your JSON.
This is where we put whole "fully-scaffolded" pages.
pages
βββ DetailPage.dart
βββ EventDetailPage.dart
βββ InfoDetailPage.dart
βββ NewsDetailPage.dart
βββ TabPage.dart
βββ counter.dart
FlatButton(
child: Text("Navigate to SomePage"),
onPressed: () => Navigator.push(
context,
MaterialPageRoute(
builder: (context) => SomePage(),
),
),
);
See https://flutter.dev/docs/cookbook/navigation/navigation-basics for a good introduction to navigation.
This is the famous provider. Makes it easy to share state up and down the application-tree cross widgets.
providers
βββ AppSettings.dart
βββ ArrangementProvider.dart
βββ EventProvider.dart
βββ EventsProvider.dart
βββ InfoProvider.dart
βββ NewsProvider.dart
βββ counter_bloc.dart
Todo: Write an introduction
This is where we add all our api-endpoints.
Currently we only have one api, that we simply call api.dart
. But in the future, we may have a api weather.dart
.
requests
βββ api.dart
The api is connected to a provider that takes the data and makes objects with our models, then provides that data to all our other widgets.
This is where we add our, you guessed it, Views. A View is a combination of multiple Widgets.
A View needs to be shown inside a Page since it lacks the scaffolding that is needed for making it a page.
views
βββ CalendarView.dart
βββ InfoView.dart
βββ IntroView.dart
βββ NewsView.
dart
Widgets, widgets, widgets.
This is the place to keep all our custom widgets.
widgets
βββ FrostedButton.dart
βββ decrement.dart
βββ increment.dart
βββ toggleTheme.dart
When creating a new feature or solving an issue.
Create a new branch f/<featurename>
We use f/
for features bf/
for bugfix etc...
It doesn't matter that much as long as it makes sense.
Then create a pull request aka. PR here on GitHub and assign me (sjoenH) or the utvikler
-team as a reviewer.
Assigning the utvikler
-team will do some load-balancing, auto assigning someone in the team.
Your branch should be merged into the develop
-branch (not straight into master). We only have production code in master-branch.
We may delete the feature-branch after it has been merged into develop.
Make a PR from develop
into master
and tag your code.
For example.
git tag v1.0.0
git push origin v1.0.0
Tagging a release should trigger a new build on Codemagic.
https://help.apple.com/app-store-connect/#/devd274dd925
Devices:
- 6.5 inch (iPhone 11 Pro Max)
- 5.5 inch (iPhone 8 Plus)
- 12.9 inch (3rd generation iPad Pro)
- 12.9 inch (2nd generation iPad Pro)