Açıklama Yok

lfabl 656b1ba782 Release: v1.0.0-pre-alpha.59 1 ay önce
.github d9be4fc8ba Feature: monorepo structure completed. 1 ay önce
.vscode 07257ec24d Release: v1.0.0-pre-alpha.1 4 ay önce
.yarn d1faf40768 First commit. 5 ay önce
eslint-local-rules 46547c6c68 Feature: Core system completed. 4 ay önce
example 8ce8bc68fc Feature: HighlightButton component added. 1 ay önce
src 909c1c3245 Feature: Glass Effect added to Menu component. 1 ay önce
.gitattributes d1faf40768 First commit. 5 ay önce
.gitignore 6ff1922f2e Feature: web build added. 1 ay önce
.npmignore 6ff1922f2e Feature: web build added. 1 ay önce
.nvmrc d1faf40768 First commit. 5 ay önce
.watchmanconfig d1faf40768 First commit. 5 ay önce
.yarnrc.yml d9be4fc8ba Feature: monorepo structure completed. 1 ay önce
CODE_OF_CONDUCT.md d1faf40768 First commit. 5 ay önce
CONTRIBUTING.md d1faf40768 First commit. 5 ay önce
LICENSE d1faf40768 First commit. 5 ay önce
README.md c3d845613a Feature: Embedded Menu is completed. 1 ay önce
babel.config.js 8368a4d8a5 Refactor: File structure updated. 1 ay önce
eslint.config.mjs 6ff1922f2e Feature: web build added. 1 ay önce
package.json 656b1ba782 Release: v1.0.0-pre-alpha.59 1 ay önce
react-native.config.js 8aee1621be Bugfix: rn assets problem fixed. 2 ay önce
tsconfig.build.json d1faf40768 First commit. 5 ay önce
tsconfig.json 6ff1922f2e Feature: web build added. 1 ay önce
turbo.json 8368a4d8a5 Refactor: File structure updated. 1 ay önce
version.mjs 8368a4d8a5 Refactor: File structure updated. 1 ay önce
yarn.lock e1793bc459 Feature: Menu component start. 1 ay önce

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