|
|
1 週間 前 | |
|---|---|---|
| .agents | 2 週間 前 | |
| .github | 3 週間 前 | |
| .vscode | 2 週間 前 | |
| .yarn | 5 ヶ月 前 | |
| eslint-local-rules | 2 週間 前 | |
| example | 2 週間 前 | |
| src | 1 週間 前 | |
| .editorconfig | 2 週間 前 | |
| .gitattributes | 2 週間 前 | |
| .gitignore | 1 ヶ月 前 | |
| .npmignore | 1 ヶ月 前 | |
| .nvmrc | 5 ヶ月 前 | |
| .watchmanconfig | 5 ヶ月 前 | |
| .yarnrc.yml | 1 ヶ月 前 | |
| CODE_OF_CONDUCT.md | 5 ヶ月 前 | |
| CONTRIBUTING.md | 5 ヶ月 前 | |
| LICENSE | 5 ヶ月 前 | |
| README.md | 1 ヶ月 前 | |
| TODO.md | 2 週間 前 | |
| babel.config.js | 2 週間 前 | |
| eslint.config.mjs | 2 週間 前 | |
| package.json | 1 週間 前 | |
| react-native.config.js | 2 ヶ月 前 | |
| tsconfig.build.json | 5 ヶ月 前 | |
| tsconfig.json | 2 週間 前 | |
| turbo.json | 1 ヶ月 前 | |
| version.mjs | 1 ヶ月 前 | |
| yarn.lock | 2 週間 前 |
The NCore, NİBGAT® UI - Kit. The NİBGAT®'s UI / Component Library.
useEffect(() => {
NCoreUIKitMenu.load({
siteLogoProps: {
imageUrl: "https://www.nibgat.com/assets/images/logo.png",
onPress: () => {
navigation.navigate("Home");
},
imageProps: {
resizeMode: "stretch"
},
imageSpace: "spacingLg",
isWorkWithAction: true,
subTitle: "Core Tech",
title: "NİBGAT®"
},
renderFooter: () => {
return <View
style={{
padding: spaces.spacingMd,
flexDirection: "row",
alignItems: "center"
}}
>
<View
style={{
marginRight: spaces.spacingSm,
justifyContent: "center",
flexDirection: "row",
alignItems: "center"
}}
>
<Text
variant="labelLargeSize"
>
Palet:
</Text>
<PaletteSwitcher/>
</View>
<View
style={{
justifyContent: "center",
flexDirection: "row",
alignItems: "center"
}}
>
<Text
variant="labelLargeSize"
>
Tema:
</Text>
<ThemeSwitcher/>
</View>
</View>;
},
isAutoClosed: true,
buttons: [
{
redirectMain: "Home",
isCollapsible: true,
title: "Ana Sayfa",
icon: ({
color
}) => <HomeIcon
color={colors.content.icon[color]}
/>,
subButtons: [
{
title: "Text",
redirectMain: "TextPage"
}
]
},
{
redirectMain: "Text",
isCollapsible: true,
title: "Deneme",
icon: ({
color
}) => <HomeIcon
color={colors.content.icon[color]}
/>,
subButtons: [
{
title: "Noliii",
redirectMain: "Home"
}
]
},
{
title: "Text",
redirectMain: "TextPage"
}
],
navigation: navigation as unknown as NCoreUIKit.Navigation,
id: "test"
});
}, []);