while bodily training is of some value, godliness is of value in every way, as it holds promise for the present life and also for the life to come. The product is an audio-guided workout program. I’ve been on the project for about a month in my free time. So far I’m just prototyping and seeing if Flutter will provide a workable solution.
developers to the Flutter and Dart ecosystems. This allows you to quickly build your app without having to develop everything from scratch. • Existing packages enable many use cases, for example, making network requests (http), custom navigation/route handling (fluro), integration with device APIs (like url_launcher & battery), and using third-party platform SDKs (like Firebase). https://flutter.io/using-packages/ Show my pubspec.yaml - Packages are pre-v1 release. - cupertino_icons & share - audioplayers - media_notification https://pub.dartlang.org/flutter/packages - This is the centralized repository to find Flutter packages. References: https://www.dartlang.org/tools/pub/dependencies
- cupertino_icons & share - audioplayers - media_notification https://pub.dartlang.org/flutter/packages - This is the centralized repository to find Flutter packages.
- cupertino_icons & share - audioplayers - media_notification https://pub.dartlang.org/flutter/packages - This is the centralized repository to find Flutter packages.
- cupertino_icons & share - audioplayers - media_notification https://pub.dartlang.org/flutter/packages - This is the centralized repository to find Flutter packages.
to call platform-specific APIs whether available in Java or Kotlin code on Android, or in ObjectiveC or Swift code on iOS. • Flutter’s platform-specific API support does not rely on code generation, but rather on a flexible message passing style: • The Flutter portion of your app sends messages to its host, the iOS or Android portion of your app, over a platform channel. • The host listens on the platform channel, and receives the message. It then calls into any number of platform-specific APIs – using the native programming language – and sends back a response to the client, the Flutter portion of your app. https://flutter.io/platform-channels/ Reference https://github.com/iampawan/Flutter-Music-Player/issues/2 Demonstrate how this works in the app on Android. Then… show example of channels (or lack thereof) in https://github.com/Zeratyll/flutter_media_notification
to pause execution until a Future completes • A Future represents an asynchronous operation that returns a value (which can be void). When a function that returns a Future is invoked, two things happen: • The function queues up work to be done and returns an uncompleted Future object. • Later, when the operation is finished, the Future object completes with a value or with an error. • When writing code that depends on a Future, you have two options: • Use async and await • Use the Future API https://www.dartlang.org/tutorials/language/futures Show dragging the slider in player_widget.dart