chore: Make color change of stories on editing complete
This commit is contained in:
parent
531f43d42a
commit
0d91badc35
2 changed files with 4 additions and 4 deletions
|
|
@ -39,11 +39,11 @@ class AddStoryController extends State<AddStoryPage> {
|
|||
|
||||
bool get hasMedia => image != null || video != null;
|
||||
|
||||
void updateColors(String text) => hasMedia
|
||||
void updateColors() => hasMedia
|
||||
? null
|
||||
: setState(() {
|
||||
backgroundColor = text.color;
|
||||
backgroundColorDark = text.darkColor;
|
||||
backgroundColor = controller.text.color;
|
||||
backgroundColorDark = controller.text.darkColor;
|
||||
});
|
||||
|
||||
void importMedia() async {
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ class AddStoryView extends StatelessWidget {
|
|||
color: Colors.white,
|
||||
backgroundColor: !controller.hasMedia ? null : Colors.black,
|
||||
),
|
||||
onChanged: controller.updateColors,
|
||||
onEditingComplete: controller.updateColors,
|
||||
decoration: InputDecoration(
|
||||
border: InputBorder.none,
|
||||
hintText: controller.hasMedia
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue