From ed629faf91af0b89c9d7dfc0a1ff78972de0a29d Mon Sep 17 00:00:00 2001 From: iizzaya Date: Thu, 21 Nov 2019 14:22:37 +0800 Subject: [PATCH] [Fix] InputDecoration prefix & suffix --- Runtime/material/input_decorator.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Runtime/material/input_decorator.cs b/Runtime/material/input_decorator.cs index 33f6efee..e0c4d748 100644 --- a/Runtime/material/input_decorator.cs +++ b/Runtime/material/input_decorator.cs @@ -2102,8 +2102,12 @@ public InputDecoration( this.hasFloatingPlaceholder = hasFloatingPlaceholder; this.isDense = isDense; this.contentPadding = contentPadding; + this.prefix = prefix; + this.prefixText = prefixText; this.prefixIcon = prefixIcon; this.prefixStyle = prefixStyle; + this.suffix = suffix; + this.suffixText = suffixText; this.suffixIcon = suffixIcon; this.suffixStyle = suffixStyle; this.counter = counter;