Aucune description

lfabl 057c261591 Bugfix: Input's custom style problems fixed. il y a 2 semaines
.agents 162095e9b6 Feature: Tooltip start. il y a 2 semaines
.github 438d85b367 X: 1. il y a 3 semaines
.vscode 0a5f90128d Feature: eslint features and CRLF updated. il y a 2 semaines
.yarn d1faf40768 First commit. il y a 5 mois
eslint-local-rules 51e2c49445 Refactor: x lint fix. il y a 2 semaines
example 51e2c49445 Refactor: x lint fix. il y a 2 semaines
src 057c261591 Bugfix: Input's custom style problems fixed. il y a 2 semaines
.editorconfig 0a5f90128d Feature: eslint features and CRLF updated. il y a 2 semaines
.gitattributes 162095e9b6 Feature: Tooltip start. il y a 2 semaines
.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
TODO.md 6739bbd8e2 Bugfix: General type problems fixed. il y a 2 semaines
babel.config.js 4a4a0f9438 Bugfix: General lint problems fixed. il y a 2 semaines
eslint.config.mjs 3f8729a42e Feature: CodeEditor Component added. il y a 2 semaines
package.json 057c261591 Bugfix: Input's custom style problems fixed. il y a 2 semaines
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 aeccecb302 Feature: Documents system completed. il y a 2 semaines
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 aeccecb302 Feature: Documents system completed. il y a 2 semaines

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