Keine Beschreibung

lfabl 4eef03878a Merge branch 'develop' of https://git.nibgat.space/nibgat/ncore-ui-kit into develop vor 2 Wochen
.agents 4a4a0f9438 Bugfix: General lint problems fixed. vor 2 Wochen
.github 438d85b367 X: 1. vor 3 Wochen
.vscode 07257ec24d Release: v1.0.0-pre-alpha.1 vor 4 Monaten
.yarn d1faf40768 First commit. vor 5 Monaten
eslint-local-rules 44584f80b0 Feature: General type definitions. vor 2 Wochen
example eb7097c4a0 Feature: .htaccess problems fixed. vor 2 Wochen
src dc95993e3e Bugfix: Documantation implementation wrong infos fixed. vor 2 Wochen
.gitattributes d1faf40768 First commit. vor 5 Monaten
.gitignore 6ff1922f2e Feature: web build added. vor 1 Monat
.npmignore 6ff1922f2e Feature: web build added. vor 1 Monat
.nvmrc d1faf40768 First commit. vor 5 Monaten
.watchmanconfig d1faf40768 First commit. vor 5 Monaten
.yarnrc.yml d9be4fc8ba Feature: monorepo structure completed. vor 1 Monat
CODE_OF_CONDUCT.md d1faf40768 First commit. vor 5 Monaten
CONTRIBUTING.md d1faf40768 First commit. vor 5 Monaten
LICENSE d1faf40768 First commit. vor 5 Monaten
README.md c3d845613a Feature: Embedded Menu is completed. vor 1 Monat
TODO.md 6739bbd8e2 Bugfix: General type problems fixed. vor 2 Wochen
babel.config.js 4a4a0f9438 Bugfix: General lint problems fixed. vor 2 Wochen
eslint.config.mjs 44584f80b0 Feature: General type definitions. vor 2 Wochen
package.json 00757ead6e Release: v1.1.0-alpha.1 vor 2 Wochen
react-native.config.js 8aee1621be Bugfix: rn assets problem fixed. vor 2 Monaten
tsconfig.build.json d1faf40768 First commit. vor 5 Monaten
tsconfig.json aeccecb302 Feature: Documents system completed. vor 2 Wochen
turbo.json 8368a4d8a5 Refactor: File structure updated. vor 1 Monat
version.mjs 8368a4d8a5 Refactor: File structure updated. vor 1 Monat
yarn.lock aeccecb302 Feature: Documents system completed. vor 2 Wochen

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