Questions tagged [fusetools]

Cross-platform mobile development product Fuse. Questions about UX, Uno, JavaScript, animation, layout, integration, the IDE, etc.

8 questions
5
votes
1 answer

Set Xcode automatic signing to false and set provision profile and certificate with fastlane match and gym

We use Fusetools to build an app. Using the command uno build --target=ios --configuration=Release we generate a new myapp.xcodeproj file for the app. When I open the .xcodeproj in Xcode IDE manually I see the Automatically manage signing checkbox…
chrisva
  • 625
  • 9
  • 17
1
vote
1 answer

ClearButton.Width hides inherited member Fuse.Elements.Element.Width

Dev environment: Windows 10 Fuse 1.4.0 (build 14778) This morning I've noticed I'm getting a warning showing up when I build my project: build\Local\Designer\cache\ux13\ClearButton.g.uno(6.19): W0000: ClearButton.Width hides inherited member…
Nested Software
  • 303
  • 4
  • 15
1
vote
1 answer

How to make horizontal aligned elements to vertical on small screens?

In my app profile page I'm showing some buttons horizontally and it is looking good in iPhone 7 but when it comes to iPhone 5 buttons are not looking great because of small screen size. I want to make the layout of buttons align vertically on small…
Unnikrishnan
  • 2,683
  • 5
  • 22
  • 39
1
vote
2 answers

Why aren't color vectors composed of float4 instead of int4 or byte4?

RBG values are 0-255 integers, so why was float4 chosen as the vector data type? Seems to me that byte would be the ideal data type for a color in Fuse.
Pete Alvin
  • 4,646
  • 9
  • 39
  • 56
1
vote
1 answer

Create a hide show element based on conditional in fuse tools

I would like to create a left menu in fuse tools that would allow for a conditional based on the devices width. This should show the menu on an ipad or tablet device and hide it on a mobile device. Just wondering if anyone knows how to do this. I…
user1752532
0
votes
1 answer

JBoss Fuse Tooling - Camel "dozer" transaformation GUI wizard

I would like to use the Dozer Mapping tool for Camel and it works well with Spring XML. I prefer to use Java DSL and I would like to somehow get the wizard to popup but I don't have a Components toolbox to drag and drop it. Any suggestions? THANK…
Michael Joyner
  • 145
  • 1
  • 11
0
votes
1 answer

Add an 'X' to clear TextInput when User has entered Text

I have a UX class called InputWithLabel that includes both a label and a TextInput. I am trying to add an 'X' to it that can be used to clear the input text. My plan is to later add the functionality to only display this 'X' when there is actual…
Nested Software
  • 303
  • 4
  • 15
0
votes
1 answer

fuse preview: getting build error when using Foreign(Language.ObjC)

I'm adding a native iOS module to my fuse project, and tagging the native methods with [Foreign(Language.ObjC)], like this: public class MyModuleIOS { [Foreign(Language.ObjC)] public void Init(string token) @{ // ... @} } …
Bjørn Egil
  • 2,398
  • 1
  • 20
  • 22