Skip to content
This repository has been archived by the owner on Dec 26, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 723 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 723 Bytes

Expo Ferrostar

This library is still in development and is not ready for production use.

Status

  • Ferrostar Core Android Implementation
  • Ferrostar View Android Implementation
  • Ferrostar Core iOS Implementation
  • Ferrostar View iOS Implementation
  • Documentation

This is a library for using Ferrostar navigation library for Expo.

Installation

expo install expo-ferrostar

Simple Usage

import { Ferrostar } from "expo-ferrostar";

export default function App() {
  return (
    <SafeAreaView style={styles.container}>
      <Ferrostar style={{ flex: 1, width: "100%" }} />
    </SafeAreaView>
  );
}