My name is Rafael,
I started your Hikr tutorial app to start learning Fuse, but the compiler throw me the following errors:
MainView.ux(3): E8001: Data type not found: Javascript
/Users/velcro/Documents/Work/fuse/hikr/MainView.ux(3,1): Error E8001: Data type not found: Javascript
MainView.ux(3): E8001: Could not resolve type 'Javascript'
/Users/velcro/Documents/Work/fuse/hikr/MainView.ux(3,1): Error E8001: Could not resolve type 'Javascript'
Build completed in 6.76 seconds
2 errors
Build ended
fuse: Failed to compile project
Hi every body. ich have created three components(ux:Class=“TabBar”, x:Class=“TapBar” and x:Class=“Card”. in the MainView i have:
<App Background="#ddd"
<DockPanel
<TopBar Dock=“Top”/
<Card Dock=“Center” Alignment=“Center” /
<TabBar Dock=“Bottom”/
</DockPanel
</App
and in the other Class i have:
<Rectangle ux:Class=“TopBar” Color="#63b8ff"
<Text Value=“My first app” Alignment=“Center” Margin=“20”/
</Rectangle
but i’m receiving an Errors for the three components:
Error E8001: Data type not found: TabBarC:\Users\forza\Documents\Fuse\SmallJobs\MainView.ux(5): E8001: Could not resolve type 'TabBar
@aeq i solved the Problem already. it was because i created the files outside my folder but i have another problem. I want to develop a Tab bar navigation exactly like this one:https://fuseopen.com/examples/tab-bar-navigation/index.html but with defferents pages. I have created three pages ux:Class with their JavaScript pages but i think i’m facing the problem in the MainView.ux in order call those pages. If you or somebody else can give some Ideas or exemples it will be very nice. thank in avance.