Feature/update cli (#4)
* fix js api typo * update doric-cli target file
This commit is contained in:
parent
efe0756541
commit
c1776f6f25
@ -28,8 +28,8 @@ android {
|
||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
implementation 'androidx.appcompat:appcompat:1.1.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||||
implementation "pub.doric:core:0.1.2"
|
||||
debugImplementation "pub.doric:core:0.1.2"
|
||||
implementation "pub.doric:core:0.2.0"
|
||||
debugImplementation "pub.doric:core:0.2.0"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -21,6 +21,7 @@ allprojects {
|
||||
maven {
|
||||
url "https://dl.bintray.com/osborn/Android"
|
||||
}
|
||||
maven { url 'https://jitpack.io' }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6,5 +6,5 @@ target 'Example' do
|
||||
use_frameworks!
|
||||
|
||||
# Pods for Example
|
||||
pod 'Doric-framework'
|
||||
pod 'DoricCore', '~>0.2.0'
|
||||
end
|
||||
|
@ -21,13 +21,13 @@ class __$__ extends Panel {
|
||||
onClick: () => {
|
||||
number.text = `${++count}`
|
||||
},
|
||||
layoutConfig: layoutConfig().exactly(),
|
||||
layoutConfig: layoutConfig().just(),
|
||||
width: 200,
|
||||
height: 50,
|
||||
}),
|
||||
])
|
||||
.apply({
|
||||
layoutConfig: layoutConfig().exactly().a(Gravity.Center),
|
||||
layoutConfig: layoutConfig().just().configAlignment(Gravity.Center),
|
||||
width: 200,
|
||||
height: 200,
|
||||
space: 20,
|
||||
|
@ -10,7 +10,7 @@
|
||||
},
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"doric": "0.1.3",
|
||||
"doric": "0.2.0",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"rollup": "^1.27.14",
|
||||
"@rollup/plugin-commonjs": "^11.0.0",
|
||||
|
@ -31,7 +31,7 @@ class FlowDemo extends Panel {
|
||||
text: `${idx}`,
|
||||
textColor: Color.WHITE,
|
||||
textSize: 20,
|
||||
layoutConfig: layoutConfig().fit().configAligmnet(Gravity.Center)
|
||||
layoutConfig: layoutConfig().fit().configAlignmnet(Gravity.Center)
|
||||
}))
|
||||
})
|
||||
},
|
||||
@ -51,7 +51,7 @@ class FlowDemo extends Panel {
|
||||
text: 'load more',
|
||||
textColor: Color.WHITE,
|
||||
textSize: 20,
|
||||
layoutConfig: layoutConfig().fit().configAligmnet(Gravity.Center)
|
||||
layoutConfig: layoutConfig().fit().configAlignmnet(Gravity.Center)
|
||||
}))
|
||||
})
|
||||
})
|
||||
|
@ -33,7 +33,7 @@ class ListPanel extends Panel {
|
||||
}
|
||||
it.loadMoreView = listItem(text({
|
||||
text: "Loading",
|
||||
layoutConfig: layoutConfig().most().configHeight(LayoutSpec.JUST).configAligmnet(Gravity.Center),
|
||||
layoutConfig: layoutConfig().most().configHeight(LayoutSpec.JUST).configAlignmnet(Gravity.Center),
|
||||
height: 50,
|
||||
}))
|
||||
it.renderItem = (idx: number) => {
|
||||
|
@ -19,7 +19,7 @@ class PopoverDemo extends Panel {
|
||||
height: 50,
|
||||
backgroundColor: colors[0],
|
||||
textColor: Color.WHITE,
|
||||
layoutConfig: layoutConfig().just().configAligmnet(Gravity.Center),
|
||||
layoutConfig: layoutConfig().just().configAlignmnet(Gravity.Center),
|
||||
text: "This is PopOver Window",
|
||||
}).also(v => {
|
||||
let idx = 0
|
||||
|
@ -34,7 +34,7 @@ class SliderPanel extends Panel {
|
||||
return slideItem(image({
|
||||
imageUrl: imageUrls[idx % imageUrls.length],
|
||||
scaleType: ScaleType.ScaleAspectFit,
|
||||
layoutConfig: layoutConfig().configWidth(LayoutSpec.MOST).configHeight(LayoutSpec.MOST).configAligmnet(gravity().center()),
|
||||
layoutConfig: layoutConfig().configWidth(LayoutSpec.MOST).configHeight(LayoutSpec.MOST).configAlignmnet(gravity().center()),
|
||||
})).also(it => {
|
||||
let start = idx
|
||||
it.onClick = () => {
|
||||
|
@ -83,7 +83,7 @@ class StickDemo extends Panel {
|
||||
text: `In Page ${idx},${itemIdx}`,
|
||||
textColor: Color.WHITE,
|
||||
textSize: 20,
|
||||
layoutConfig: layoutConfig().fit().configAligmnet(Gravity.Center)
|
||||
layoutConfig: layoutConfig().fit().configAlignmnet(Gravity.Center)
|
||||
}).also(v => {
|
||||
v.onClick = () => {
|
||||
v.text = "Clicked"
|
||||
@ -120,7 +120,7 @@ class StickDemo extends Panel {
|
||||
e.textColor = Color.BLACK
|
||||
}
|
||||
})
|
||||
this.indicator.layoutConfig = layoutConfig().just().configAligmnet(Gravity.Bottom).configMargin({ bottom: 13 })
|
||||
this.indicator.layoutConfig = layoutConfig().just().configAlignmnet(Gravity.Bottom).configMargin({ bottom: 13 })
|
||||
animate(context)({
|
||||
animations: () => {
|
||||
this.indicator.centerX = this.getRootView().width / this.tabs.length * (page + 0.5)
|
||||
|
@ -556,7 +556,7 @@ class LayoutConfigImpl {
|
||||
this.margin = m;
|
||||
return this;
|
||||
}
|
||||
configAligmnet(a) {
|
||||
configAlignmnet(a) {
|
||||
this.alignment = a;
|
||||
return this;
|
||||
}
|
||||
|
@ -2004,7 +2004,7 @@ class LayoutConfigImpl {
|
||||
this.margin = m;
|
||||
return this;
|
||||
}
|
||||
configAligmnet(a) {
|
||||
configAlignmnet(a) {
|
||||
this.alignment = a;
|
||||
return this;
|
||||
}
|
||||
|
@ -96,7 +96,7 @@ export class LayoutConfigImpl implements LayoutConfig, Modeling {
|
||||
return this
|
||||
}
|
||||
|
||||
configAligmnet(a: Gravity) {
|
||||
configAlignmnet(a: Gravity) {
|
||||
this.alignment = a
|
||||
return this
|
||||
}
|
||||
|
Reference in New Issue
Block a user