Installation
To install the Flutter SDK plugin, the following section must be added to the pubspec.yaml
file:
dependencies:
flutter:
sdk: flutter
ottu_flutter_checkout:
# To use ottu_flutter_checkout SDK from a local source, uncomment the line below
# and comment out the three lines specifying the Git repository.
# path: ../ottu_flutter_checkout
git:
url: https://github.com/ottuco/ottu-flutter.git
ref: main
And then run flutter pub get
command in the terminal.
Minimum Requirements
The SDK can be used on devices running Android 8 (Android SDK 26) or higher.
To prevent application crashes, it must be ensured that the correct parent theme is applied to the Android application. The theme configuration is defined in the themes.xml
and/or styles.xml
files located within the res/values
directory. The parent
attribute of the style
tag should be set to Theme.Material3.DayNight.NoActionBar
.
For reference, the configuration file can be reviewed at the following link: themes.xml on GitHub
Minimum Requirements
The SDK can be used on devices running iOS 15 or higher.
Last updated