Skip to content

Commit

Permalink
Removed appbar color text field in example.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuantvu committed Sep 12, 2020
1 parent b801fa1 commit 878934b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.1
* Fixed close meeting programmatically in iOS.
* Updated formatting to increase pub points.

## 0.4.0
* Removed the app bar when the meeting is opening.

Expand Down
9 changes: 0 additions & 9 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ class _MyAppState extends State<MyApp> {
final subjectText = TextEditingController(text: "My Plugin Test Meeting");
final nameText = TextEditingController(text: "Plugin Test User");
final emailText = TextEditingController(text: "[email protected]");
final iosAppBarRGBAColor =
TextEditingController(text: "#0080FF80"); //transparent blue
var isAudioOnly = true;
var isAudioMuted = true;
var isVideoMuted = true;
Expand Down Expand Up @@ -110,13 +108,6 @@ class _MyAppState extends State<MyApp> {
SizedBox(
height: 16.0,
),
TextField(
controller: iosAppBarRGBAColor,
decoration: InputDecoration(
border: OutlineInputBorder(),
labelText: "AppBar Color(IOS only)",
hintText: "Hint: This HAS to be in HEX RGBA format"),
),
SizedBox(
height: 16.0,
),
Expand Down

0 comments on commit 878934b

Please sign in to comment.