|
|
vor 2 Wochen | |
|---|---|---|
| .agents | vor 2 Wochen | |
| .github | vor 3 Wochen | |
| .vscode | vor 2 Wochen | |
| .yarn | vor 5 Monaten | |
| eslint-local-rules | vor 2 Wochen | |
| example | vor 2 Wochen | |
| src | vor 2 Wochen | |
| .editorconfig | vor 2 Wochen | |
| .gitattributes | vor 2 Wochen | |
| .gitignore | vor 1 Monat | |
| .npmignore | vor 1 Monat | |
| .nvmrc | vor 5 Monaten | |
| .watchmanconfig | vor 5 Monaten | |
| .yarnrc.yml | vor 1 Monat | |
| CODE_OF_CONDUCT.md | vor 5 Monaten | |
| CONTRIBUTING.md | vor 5 Monaten | |
| LICENSE | vor 5 Monaten | |
| README.md | vor 1 Monat | |
| TODO.md | vor 3 Wochen | |
| babel.config.js | vor 2 Wochen | |
| eslint.config.mjs | vor 2 Wochen | |
| package.json | vor 2 Wochen | |
| react-native.config.js | vor 2 Monaten | |
| tsconfig.build.json | vor 5 Monaten | |
| tsconfig.json | vor 3 Wochen | |
| turbo.json | vor 1 Monat | |
| version.mjs | vor 1 Monat | |
| yarn.lock | vor 3 Wochen |
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"
});
}, []);