Socket
Socket
Sign inDemoInstall

ncore-mobile

Package Overview
Dependencies
6
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ncore-mobile

NİBGAT® | NCore Mobile Component Library


Version published
Maintainers
1
Created

Readme

Source


NİBGAT® | NCore Mobile Component Library

Documentation

Please visit for docs: NCore Mobile

Example

yarn example android
or
yarn example ios

Dependencies

If you install with yarn these packages will already be installed.

  • immer@9.0.12
  • react-native-gesture-handler@2.3.2
  • react-native-modalize@2.0.13
  • react-native-portalize@1.0.7
  • react-native-simple-toast@1.1.3
  • react-native-svg@12.3.0

Base Library

  • The library is exporting sample base components to be used in react project you can test it like this :
    • NPM: npm install ncore-mobile react-native-gesture-handler react-native-modalize react-native-portalize react-native-svg react-native-simple-toast --save
    • YARN: yarn add ncore-mobile
import {
    NCoreProvider,
    useNCoreTheme,
    Button
} from 'ncore-mobile';

const Home = () => {
    const {
        activeTheme,
        colors
    } = useNCoreTheme();

    return <View
        style={{
            backgroundColor: colors.background,
            justifyContent: "center",
            alignItems: "center",
            flex: 1
        }}
    >
        Welcome to Home Page. Your theme is: {activeTheme}
    </View>;
};

const App = () => {
    return <NCoreProvider>
        {your project codes... (navigation, etc.)}
    </NCoreProvider>;
}

Discord

NİBGAT® | Community

Keywords

FAQs

Last updated on 12 Nov 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc