0.0.17 • Published 5 years ago

@kiwicom/universal-components v0.0.17

Weekly downloads
21
License
MIT
Repository
-
Last release
5 years ago

Universal Components

Component library compatible with Expo/React Native projects as well as React applications.

Relies on react-native-web to port components, written with a React Native first approach, to the web.

📘 Storybook | 📚 Documentation

Usage

yarn install @kiwicom/universal-components
# Only for React Native
react-native link @kiwicom/universal-components

In Expo projects

Since react-native link is not available in Expo, we need to load the fonts at the root of the application. Your App.js should look like

import React from "react";
import { View } from "react-native";
import { Icon, Text, PageLoader } from "@kiwicom/universal-components";
import { Font } from "expo";
import OrbitIcons from "@kiwicom/universal-components/lib/fonts/orbit-icons.ttf";
import Roboto from "@kiwicom/universal-components/lib/fonts/Roboto/Roboto-Regular.ttf";
import RobotoItalic from '@kiwicom/universal-components/lib/fonts/Roboto/Roboto-Italic.ttf';
import RobotoBold from '@kiwicom/universal-components/lib/fonts/Roboto/Roboto-Bold.ttf';
import RobotoBoldItalic from '@kiwicom/universal-components/lib/fonts/Roboto/Roboto-BoldItalic.ttf';

export default class App extends React.Component {
  state = {
    fontLoaded: false
  };

  componentDidMount() {
    Font.loadAsync({
      "orbit-icons": OrbitIcons,
      Roboto,
      RobotoItalic,
      RobotoBold,
      RobotoBoldItalic,
    }).then(() => {
      this.setState({ fontLoaded: true });
    });
  }

  render() {
    return this.state.fontLoaded ? (
      <View>
        <Text>Open up App.js to start working on your app!</Text>
        <Icon name="calendar" />
      </View>
    ) : (
      <PageLoader />
    );
  }
}

For more information, consult the documentation on expo.io.

Note: For web projects, you need to ensure you support the .web.js extension. create-react-app already supports it by default.

Contributing

See CONTRIBUTING.md

Repository: https://github.com/kiwicom/universal-components

Forward your suggestions, issues and bugs here.

0.0.17

5 years ago

0.0.17-alpha.0

5 years ago

0.0.16

5 years ago

0.0.15-alpha.0

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.11-beta.1

5 years ago

0.0.11-beta.0

5 years ago

0.0.11-alpha.0

5 years ago

0.0.10

5 years ago

0.0.10-patch.0

5 years ago

0.0.9

5 years ago

0.0.9-alpha.3

5 years ago

0.0.9-alpha.2

5 years ago

0.0.9-alpha.1

5 years ago

0.0.9-alpha.0

5 years ago

0.0.8

5 years ago

0.0.8-alpha.0

5 years ago

0.0.7

5 years ago

0.0.7-beta.0

5 years ago

0.0.7-alpha.6

5 years ago

0.0.7-alpha.5

5 years ago

0.0.7-alpha.4

5 years ago

0.0.7-alpha.3

5 years ago

0.0.7-alpha.2

5 years ago

0.0.7-alpha.0

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago