flutter_test_lib 0.0.3
flutter_test_lib: ^0.0.3 copied to clipboard
A new Flutter package with a customized Button.
Test_Up_Lib #
A Flutter plugin that provides assets abstraction management APIs without UI integration, you can get assets (image/video/audio) on Android, iOS and macOS.
Add the plugin reference to pubspec.yaml #
Two ways to add the plugin to your pubspec:
- (Recommend) Run
flutter pub add flutter_test_lib. - Add the plugin reference in your
pubspec.yaml'sdependenciessection:
dependencies:
flutter_test_lib: $latest_version
The latest stable version is:
[][pub package]
Import in your projects #
import 'package:flutter_test_lib/flutter_test_lib.dart';
Configure native platforms #
Minimum platform versions: Android 16, iOS 9.0, macOS 10.15.
- Android: Android config preparation.
- iOS: iOS config preparation.
- macOS: Pretty much the same with iOS.
Android config preparation
Kotlin, Gradle, AGP
We ship this plugin with Kotlin 1.7.22.
If your projects use a lower version of Kotlin/Gradle/AGP,
please upgrade them to a newer version.
More specifically:
- Upgrade your Gradle version (
gradle-wrapper.properties) to7.5.1or the latest version. - Upgrade your Kotlin version (
ext.kotlin_version) to1.7.22or the latest version. - Upgrade your AGP version (
com.android.tools.build:gradle) to7.2.2or the latest version.
