Both right and left buttonDisabledColor were not parsed on Android.
@@ -46,6 +46,8 @@ public class TopBarOptions {
options.rightButtonColor = ColorParser.parse(json, "rightButtonColor");
options.leftButtonColor = ColorParser.parse(json, "leftButtonColor");
+ options.leftButtonDisabledColor = ColorParser.parse(json, "leftButtonDisabledColor");
+ options.rightButtonDisabledColor = ColorParser.parse(json, "rightButtonDisabledColor");
options.validate();
return options;