mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
As of commit e35f29177495131f0f598fc7ae1ffd74d89edf15, the dynamic-layouts example has been removed from the flutter-packages repository, which fixes https://github.com/flutter/flutter/issues/148979. The exact reasoning is as follows: ``` The dynamic_layouts package is unpublished, and its core feature set has not been updated in years. Though it's not high-traffic, all packages in that repo require maintenance for Flutter versions, gradle bumps, and project migrations. ``` Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
861 B
Plaintext
21 lines
861 B
Plaintext
menuconfig BR2_PACKAGE_FLUTTER_PACKAGES
|
|
bool "flutter packages"
|
|
depends on BR2_PACKAGE_HOST_FLUTTER_SDK_BIN_ARCH_SUPPORTS
|
|
depends on BR2_PACKAGE_FLUTTER_ENGINE
|
|
select BR2_PACKAGE_HOST_FLUTTER_SDK_BIN
|
|
help
|
|
First-party Flutter package examples.
|
|
|
|
if BR2_PACKAGE_FLUTTER_PACKAGES
|
|
source "package/flutter-packages/flutter-adaptive-scaffold-example/Config.in"
|
|
source "package/flutter-packages/flutter-animations-example/Config.in"
|
|
source "package/flutter-packages/flutter-go-router-example/Config.in"
|
|
source "package/flutter-packages/flutter-image-example/Config.in"
|
|
source "package/flutter-packages/flutter-markdown-example/Config.in"
|
|
source "package/flutter-packages/flutter-rfw-local-example/Config.in"
|
|
endif
|
|
|
|
comment "flutter packages need flutter-engine"
|
|
depends on BR2_PACKAGE_HOST_FLUTTER_SDK_BIN_ARCH_SUPPORTS
|
|
depends on !BR2_PACKAGE_FLUTTER_ENGINE
|