Açıklama Yok

lfabl 811e8137c5 Bugfix: spreadbehaviour problem fixed on DateTimePicker. 2 hafta önce
.agents 162095e9b6 Feature: Tooltip start. 2 hafta önce
.github 438d85b367 X: 1. 3 hafta önce
.vscode 0a5f90128d Feature: eslint features and CRLF updated. 2 hafta önce
.yarn d1faf40768 First commit. 5 ay önce
eslint-local-rules 51e2c49445 Refactor: x lint fix. 2 hafta önce
example 51e2c49445 Refactor: x lint fix. 2 hafta önce
src 811e8137c5 Bugfix: spreadbehaviour problem fixed on DateTimePicker. 2 hafta önce
.editorconfig 0a5f90128d Feature: eslint features and CRLF updated. 2 hafta önce
.gitattributes 162095e9b6 Feature: Tooltip start. 2 hafta ö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
TODO.md 6739bbd8e2 Bugfix: General type problems fixed. 3 hafta önce
babel.config.js 4a4a0f9438 Bugfix: General lint problems fixed. 2 hafta önce
eslint.config.mjs 3f8729a42e Feature: CodeEditor Component added. 2 hafta önce
package.json 7c69f22974 Release: v1.1.0-alpha.10 2 hafta ö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 aeccecb302 Feature: Documents system completed. 3 hafta önce
turbo.json 8368a4d8a5 Refactor: File structure updated. 1 ay önce
version.mjs 8368a4d8a5 Refactor: File structure updated. 1 ay önce
yarn.lock aeccecb302 Feature: Documents system completed. 3 hafta ö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"
    });
}, []);