如何将主题信息从本机Android应用发送到Flutter模块的“ AAR”模块?

时间:2020-01-22 19:06:03

标签: android android-studio flutter aar

现在,我将我的flutter模块包括在android应用程序的aar文件中。 根据此文档:https://flutter.dev/docs/development/add-to-app/android/project-setup

现在,我希望将我的android应用程序的主题信息发送到flutter模块,并希望访问flutter内部的主题项的颜色值。我该如何实现?

这是我包含在清单中的活动标签。现在,我希望在我的FlutterActivity中使用AppTheme中的样式,该怎么做?

<activity
            android:name="io.flutter.embedding.android.FlutterActivity"
            android:theme="@style/AppTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:windowSoftInputMode="adjustResize"
            />

0 个答案:

没有答案