-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed appbar color text field in example.
- Loading branch information
Showing
2 changed files
with
4 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
@@ -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, | ||
), | ||
|