RepoMicrosoftMicrosoftpublished Jul 10, 2019seen 5d

microsoft/fluentui-react-native

TypeScript

Open original ↗

Captured source

source ↗
published Jul 10, 2019seen 5dcaptured 13hhttp 200method plain

microsoft/fluentui-react-native

Description: A react-native component library that implements the Fluent Design System.

Language: TypeScript

License: MIT

Stars: 1436

Forks: 172

Open issues: 105

Created: 2019-07-10T20:27:19Z

Pushed: 2026-06-11T00:29:51Z

Default branch: main

Fork: no

Archived: no

README:

FluentUI React Native

![npm version](https://badge.fury.io/js/%40fluentui%2Freact-native) ![Build Status](https://dev.azure.com/ms/ui-fabric-react-native/_build/latest?definitionId=226&branchName=main) ![Build Status](https://dev.azure.com/ms/ui-fabric-react-native/_build/latest?definitionId=229&branchName=main)

FluentUI React Native is a javascript component library that provides developers with controls that are part of the Fluent Design System. These controls are built on React Native and fully customizable.

FluentUI React Native is still in the alpha stages of development for both the components and the repo. We encourage anyone who is interested in getting an early glimpse of our plans to download and use our components, but please note that you may hit bumps along the way. Please leave us feedback or file issues if you run into bumps, and we will continue to improve the quality of the repo.

Development status on each platform: | Windows | macOS | iOS | Android | |---------------------|---------------------|-------------|-------------| | Alpha (in progress) | Alpha (in progress) | Alpha (in progress) | Alpha (in progress) |

Getting Started

If you have an existing React Native project, it's easy to begin using FluentUI React Native. If you need to setup a new React Native project, please see the React Native Windows Getting Started documentation.

Prerequisites

Create New React Native project (if needed)

1. Follow the instructions on the React Native Windows Getting Started documentation to create a React Native project.

2. Navigate to the root folder of your project, and use npm to install the package:

npm i @fluentui/react-native

3. After successful installation, you can test the package by importing components at the top of your app's entry file, e.g. App.js:

import { Checkbox } from '@fluentui/react-native';

4. After importing the @fluentui/react-native package, you can use components such as Text and Checkbox in your React.JSX.

// In App.js in a new project
import React from 'react';
import { View, Text } from 'react-native';
import { CheckboxV1 as Checkbox } from '@fluentui/react-native';
function HelloWorldApp() {
return (

Hello, world!


);
}
export default HelloWorldApp;

If you run into an error that says pragma and pragmaFrag cannot be set when runtime is automatic, you can try switching to classic runtime.

Documentation

Components and Controls

Our component documentation can be found in SPEC.md files for each component. The current list can be found in our Wiki's sidebar. They will be uploaded to a website at a future time.

Expanding Component documentation

Our SPEC.md files should reflect the current state of controls that have established the _v1_ set of properties on any one platform.

Since the FluentUI React Native controls are cross-platform, but represented by a single page, it's important to distinguish platform differences and limitations. Examples include:

  • If the component is not available on all supported platforms.
  • If the component has properties not available on all supported platforms.
  • If the component has limited support for a given property on any supported platforms.
  • If the component has distinguishable behavior on a supported platform that must be minded while used.

Theming framework

Documentation for Theming can be found in our docs file, or for more in depth documentation, along side the implementation.

  • [Theming Overview](./docs/pages/Theming/Basics.md)
  • [StyleSheets](./docs/pages/Theming/ThemedStylesheet.md)
  • [Customizing Theme Settings](./docs/pages/Theming/CustomTheme.md)
  • [Theme Reference](./packages/framework/theme/README.md)
  • [Tokens](./packages/framework/use-tokens/README.md)
  • [Slots](./packages/framework/use-slots/README.md)
  • [Customize and Compose](./packages/framework/composition/README.md)

Developing in the repo

Yarn + Lage

This repo is set up as a monorepo using Yarn workspaces. To install yarn, please follow instructions in the Yarn documentation.

For running tasks the repo has switched to using Lage for task running. The primary tasks that can be executed at the root are:

  • yarn build - does the typescript build for all packages in the repository
  • yarn test - will build, lint, and run any applicable tests on all packages in the repo
  • yarn lage bundle - will bundle all packages in the repo
  • yarn bundle:repo - convenience wrapper for yarn lage bundle
  • yarn lage buildci - will build, lint, run tests, and run the configured repo checks

Note that Lage uses caching to avoid redundant steps and has very minimal output. To avoid caching add --no-cache as a command line argument. Similarly adding --verbose will give more detailed output.

Setup your development environment

To start developing in the repository you can:

1. git clone https://github.com/microsoft/fluentui-react-native.git 1. cd fluentui-react-native 1. yarn 1. yarn build

After a successful yarn build, you can explore FluentUI Tester, our demo application to play with each of the controls. To run FluentUI Tester, please follow instructions in the [FluentUI Tester…

Excerpt shown — open the source for the full document.