-
-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
Flixel Version: 6.0.0
haxeui-core: git
haxeui-flixel: git
I have a ScrollView component with a VBox inside of it, inside of which, I added a ColorPicker component (among other components) like so:
This is the code inside the create()
function inside a class extending UIState
final sv: ScrollView = new ScrollView();
sv.percentWidth = 100;
sv.percentHeight = 95;
sv.percentContentWidth = 100;
final innerViewBox: VBox = new VBox();
innerViewBox.percentWidth = 100;
// ... code to add some labels and numbersteppers
final clrPicker = new ColorPicker();
clrPicker.id = 'myclrpicker';
clrPicker.currentColor = clr;
innerViewBox.addComponent(clrPicker);
// ... other stuff
sv.addComponent(innerViewBox);
add(sv);
But when I compile for android, the picker has weird scaling:
Metadata
Metadata
Assignees
Labels
No labels