Không có mô tả

lfabl 4f73e70436 Merge branch 'release/1.1.0-alpha.14' into develop 2 tuần trước cách đây
.agents 162095e9b6 Feature: Tooltip start. 2 tuần trước cách đây
.github 438d85b367 X: 1. 3 tuần trước cách đây
.vscode 0a5f90128d Feature: eslint features and CRLF updated. 2 tuần trước cách đây
.yarn d1faf40768 First commit. 5 tháng trước cách đây
eslint-local-rules 51e2c49445 Refactor: x lint fix. 2 tuần trước cách đây
example 51e2c49445 Refactor: x lint fix. 2 tuần trước cách đây
src 9d10492237 Feature render custom icon prop added for selectbox. 2 tuần trước cách đây
.editorconfig 0a5f90128d Feature: eslint features and CRLF updated. 2 tuần trước cách đây
.gitattributes 162095e9b6 Feature: Tooltip start. 2 tuần trước cách đây
.gitignore 6ff1922f2e Feature: web build added. 1 tháng trước cách đây
.npmignore 6ff1922f2e Feature: web build added. 1 tháng trước cách đây
.nvmrc d1faf40768 First commit. 5 tháng trước cách đây
.watchmanconfig d1faf40768 First commit. 5 tháng trước cách đây
.yarnrc.yml d9be4fc8ba Feature: monorepo structure completed. 1 tháng trước cách đây
CODE_OF_CONDUCT.md d1faf40768 First commit. 5 tháng trước cách đây
CONTRIBUTING.md d1faf40768 First commit. 5 tháng trước cách đây
LICENSE d1faf40768 First commit. 5 tháng trước cách đây
README.md c3d845613a Feature: Embedded Menu is completed. 1 tháng trước cách đây
TODO.md 6739bbd8e2 Bugfix: General type problems fixed. 2 tuần trước cách đây
babel.config.js 4a4a0f9438 Bugfix: General lint problems fixed. 2 tuần trước cách đây
eslint.config.mjs 3f8729a42e Feature: CodeEditor Component added. 2 tuần trước cách đây
package.json 8f997befbb Release: v1.1.0-alpha.14 2 tuần trước cách đây
react-native.config.js 8aee1621be Bugfix: rn assets problem fixed. 2 tháng trước cách đây
tsconfig.build.json d1faf40768 First commit. 5 tháng trước cách đây
tsconfig.json aeccecb302 Feature: Documents system completed. 2 tuần trước cách đây
turbo.json 8368a4d8a5 Refactor: File structure updated. 1 tháng trước cách đây
version.mjs 8368a4d8a5 Refactor: File structure updated. 1 tháng trước cách đây
yarn.lock aeccecb302 Feature: Documents system completed. 2 tuần trước cách đây

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