Aucune description

lfabl bb2dd322fa Feature: renderSiteLogo and renderHeaderSeperator props added to Menu Component. il y a 3 semaines
.github d9be4fc8ba Feature: monorepo structure completed. il y a 1 mois
.vscode 07257ec24d Release: v1.0.0-pre-alpha.1 il y a 4 mois
.yarn d1faf40768 First commit. il y a 5 mois
eslint-local-rules 46547c6c68 Feature: Core system completed. il y a 4 mois
example bb2dd322fa Feature: renderSiteLogo and renderHeaderSeperator props added to Menu Component. il y a 3 semaines
src bb2dd322fa Feature: renderSiteLogo and renderHeaderSeperator props added to Menu Component. il y a 3 semaines
.gitattributes d1faf40768 First commit. il y a 5 mois
.gitignore 6ff1922f2e Feature: web build added. il y a 1 mois
.npmignore 6ff1922f2e Feature: web build added. il y a 1 mois
.nvmrc d1faf40768 First commit. il y a 5 mois
.watchmanconfig d1faf40768 First commit. il y a 5 mois
.yarnrc.yml d9be4fc8ba Feature: monorepo structure completed. il y a 1 mois
CODE_OF_CONDUCT.md d1faf40768 First commit. il y a 5 mois
CONTRIBUTING.md d1faf40768 First commit. il y a 5 mois
LICENSE d1faf40768 First commit. il y a 5 mois
README.md c3d845613a Feature: Embedded Menu is completed. il y a 1 mois
babel.config.js 8368a4d8a5 Refactor: File structure updated. il y a 1 mois
eslint.config.mjs 6ff1922f2e Feature: web build added. il y a 1 mois
package.json f424c4ae11 Release: v1.0.0-pre-alpha.66 il y a 1 mois
react-native.config.js 8aee1621be Bugfix: rn assets problem fixed. il y a 2 mois
tsconfig.build.json d1faf40768 First commit. il y a 5 mois
tsconfig.json 6ff1922f2e Feature: web build added. il y a 1 mois
turbo.json 8368a4d8a5 Refactor: File structure updated. il y a 1 mois
version.mjs 8368a4d8a5 Refactor: File structure updated. il y a 1 mois
yarn.lock e1793bc459 Feature: Menu component start. il y a 1 mois

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