Added Test and the language file
This commit is contained in:
parent
2fa06c0203
commit
80a99c29c5
|
@ -0,0 +1,12 @@
|
|||
<App>
|
||||
<DockPanel>
|
||||
<StatusBarBackground Dock="Top" />
|
||||
<ScrollView ClipToBounds="true">
|
||||
<StackPanel>
|
||||
<Text FontSize="30">Hello, world!</Text>
|
||||
<Slider/>
|
||||
<Button Text="Button" />
|
||||
<Switch Alignment="Left" /> </StackPanel>
|
||||
</ScrollView>
|
||||
</DockPanel>
|
||||
</App>
|
|
@ -0,0 +1,2 @@
|
|||
<App> <DockPanel> <StatusBarBackground Dock="Top"/> <ScrollView ClipToBounds="true"> <StackPanel> <Text FontSize="30">Hello, world!</Text> <Slider/> <Button Text="Button"/> <Switch Alignment="Left"/> </StackPanel> </ScrollView> </DockPanel>
|
||||
</App>
|
|
@ -0,0 +1,22 @@
|
|||
module.exports = {
|
||||
|
||||
name: "UX"
|
||||
namespace: "ux"
|
||||
fallback: ['html']
|
||||
|
||||
###
|
||||
Supported Grammars
|
||||
###
|
||||
grammars: [
|
||||
"UX"
|
||||
]
|
||||
|
||||
###
|
||||
Supported extensions
|
||||
###
|
||||
extensions: [
|
||||
"ux"
|
||||
]
|
||||
|
||||
defaultBeautifier: "Pretty Diff"
|
||||
}
|
Loading…
Reference in New Issue