You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+27-1Lines changed: 27 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,29 @@
1
+
## 8.2.0
2
+
3
+
* UPDATED NATIVE LIBRARIES
4
+
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to version 3.2.0-dev.
5
+
* IMPROVED POPUP INTERACTION
6
+
* Added transparent barriers and PopScope in `AlertWrapper` and `UIHelper` to prevent background interaction while native or custom popups are being shown.
7
+
* Changed default language fallback to English (`en`).
8
+
* Refined `VersionControlResponse` handling, ensuring `DISMISSED` is returned consistently.
9
+
10
+
## 8.1.8-dev
11
+
12
+
* IMPLEMENTED STYLES FLEXIBILITY FOR CUSTOM POPUPS
13
+
* Added a parameter when building the version control popup for adding foreign styles or keeping their own.
14
+
15
+
## 8.1.2-dev
16
+
17
+
* IMPLEMENTED CUSTOM POPUPS
18
+
* Added custom Flutter popups implementation to support dark/light mode colors (#1C1C1C and #B0B0B0) as requested.
19
+
* Added UIHelper and OSAMDialog widget in the Flutter part.
20
+
* Updated example app with "Custom Flutter Popup" button to test the new UI.
21
+
22
+
## 8.1.2-dev
23
+
24
+
* BREAKING CHANGES
25
+
* Updated [modul_comu_osam library](https://github.com/AjuntamentdeBarcelona/modul_comu_osam) to version 3.0.1-dev accessible popup.
26
+
1
27
## 8.1.0
2
28
3
29
* BREAKING CHANGES
@@ -105,4 +131,4 @@
105
131
106
132
## 1.0.0
107
133
108
-
* First version of common module flutter (not null safety)
134
+
* First version of common module flutter (not null safety)
En cas que les dependències de Firebase Analytics, Firebase Performance, Firebase Messaging i Firebase Crashlytics fallin, cal afegir aquestes aquesta configuració al pubspec:
@@ -110,7 +111,7 @@ En el Podfile del projecte d'iOS creat por Flutter haurem d'incloure el pod del
110
111
Kotlin Multiplatform Mobile. Això es fa incloent la següent linea:
111
112
112
113
```plist
113
-
pod 'OSAMCommon', :git => 'https://github.com/AjuntamentdeBarcelona/modul_comu_osam.git', :tag => '2.2.3'
114
+
pod 'OSAMCommon', :git => 'https://github.com/AjuntamentdeBarcelona/modul_comu_osam.git', :tag => '3.2.0-dev'
114
115
```
115
116
116
117
El Podfile quedaria de [la següent manera](https://github.com/AjuntamentdeBarcelona/modul_comu_osam_flutter/blob/main/example/ios/Podfile)
Copy file name to clipboardExpand all lines: android/src/main/kotlin/cat/bcn/commonmodule/flutter/osam_common_module_flutter/CommonModuleFlutterPlugin.kt
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,8 @@ class CommonModuleFlutterPlugin : FlutterPlugin, MethodCallHandler, ActivityAwar
80
80
val osamCommons =this.osamCommons
81
81
if (osamCommons !=null) {
82
82
val language = getLanguageFromString(call.argument("language") ?:"")
83
-
osamCommons.versionControl(language) {
83
+
val isDarkMode = call.argument<Boolean>("isDarkMode") ?:false
0 commit comments