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