Nav apraksta

lfabl eb7097c4a0 Feature: .htaccess problems fixed. 2 nedēļas atpakaļ
.agents 4a4a0f9438 Bugfix: General lint problems fixed. 2 nedēļas atpakaļ
.github 438d85b367 X: 1. 3 nedēļas atpakaļ
.vscode 07257ec24d Release: v1.0.0-pre-alpha.1 4 mēneši atpakaļ
.yarn d1faf40768 First commit. 5 mēneši atpakaļ
eslint-local-rules 44584f80b0 Feature: General type definitions. 2 nedēļas atpakaļ
example eb7097c4a0 Feature: .htaccess problems fixed. 2 nedēļas atpakaļ
src dc95993e3e Bugfix: Documantation implementation wrong infos fixed. 2 nedēļas atpakaļ
.gitattributes d1faf40768 First commit. 5 mēneši atpakaļ
.gitignore 6ff1922f2e Feature: web build added. 1 mēnesi atpakaļ
.npmignore 6ff1922f2e Feature: web build added. 1 mēnesi atpakaļ
.nvmrc d1faf40768 First commit. 5 mēneši atpakaļ
.watchmanconfig d1faf40768 First commit. 5 mēneši atpakaļ
.yarnrc.yml d9be4fc8ba Feature: monorepo structure completed. 1 mēnesi atpakaļ
CODE_OF_CONDUCT.md d1faf40768 First commit. 5 mēneši atpakaļ
CONTRIBUTING.md d1faf40768 First commit. 5 mēneši atpakaļ
LICENSE d1faf40768 First commit. 5 mēneši atpakaļ
README.md c3d845613a Feature: Embedded Menu is completed. 1 mēnesi atpakaļ
TODO.md 6739bbd8e2 Bugfix: General type problems fixed. 2 nedēļas atpakaļ
babel.config.js 4a4a0f9438 Bugfix: General lint problems fixed. 2 nedēļas atpakaļ
eslint.config.mjs 44584f80b0 Feature: General type definitions. 2 nedēļas atpakaļ
package.json 0f4f496cca Release: v1.1.0-alpha.0 2 nedēļas atpakaļ
react-native.config.js 8aee1621be Bugfix: rn assets problem fixed. 2 mēneši atpakaļ
tsconfig.build.json d1faf40768 First commit. 5 mēneši atpakaļ
tsconfig.json aeccecb302 Feature: Documents system completed. 2 nedēļas atpakaļ
turbo.json 8368a4d8a5 Refactor: File structure updated. 1 mēnesi atpakaļ
version.mjs 8368a4d8a5 Refactor: File structure updated. 1 mēnesi atpakaļ
yarn.lock aeccecb302 Feature: Documents system completed. 2 nedēļas atpakaļ

README.md

NİBGAT® | NCore - Mobile

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"
    });
}, []);