Audio mute unmute fixes (#234)

* progress

* refresh

* Create Podfile.lock

* Update Podfile.lock

* pub

* update deps.

* fix tests

* dart format .

* fix duplicate imports

---------

Co-authored-by: cloudwebrtc <[email protected]>
This commit is contained in:
Hiroshi Horie
2023-02-06 12:43:27 +09:00
committed by GitHub
co-authored by cloudwebrtc
parent 75412779a2
commit a23eb6332c
16 changed files with 429 additions and 324 deletions
+4 -3
View File
@@ -21,9 +21,6 @@ class LiveKitTheme {
final accentColor = LKColors.lkBlue;
ThemeData buildThemeData(BuildContext ctx) => ThemeData(
backgroundColor: bgColor,
// accentColor: accentColor,
// colorScheme: ColorScheme.fromSwatch(primarySwatch: Colors.blue),
appBarTheme: AppBarTheme(
backgroundColor: cardColor,
),
@@ -95,5 +92,9 @@ class LiveKitTheme {
enabledBorder: InputBorder.none,
focusedBorder: InputBorder.none,
),
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.white,
background: bgColor,
),
);
}