A react-native component library that implements the Fluent Design System.
Перейти к файлу
danielkko bd1b8ae73a
Create PRINCIPLES.MD (#696)
Creating a page to communicate agreed-upon FURN principles
2021-05-21 16:47:39 -07:00
.ado Remove fake dry run that will actually publish on every PR (#685) 2021-05-12 12:10:09 -05:00
.github Update PULL_REQUEST_TEMPLATE.md 2020-09-18 12:10:00 -07:00
.vscode Add a Contributing markdown file (#555) 2021-04-26 14:58:39 -05:00
apps Add react-native-svg-transformer to iOS and macOS (#695) 2021-05-20 15:36:10 -07:00
assets Ejlayne/fluentui tester docs (#473) 2020-09-22 13:03:15 -07:00
change Add react-native-svg-transformer to iOS and macOS (#695) 2021-05-20 15:36:10 -07:00
packages Add very basic jest snapshots for RadioGroup (#697) 2021-05-19 18:53:21 -07:00
scripts Update to react-native 0.63 (#631) 2021-03-05 20:06:48 +00:00
.dockerignore Initial scaffolding (#1) 2019-08-02 09:28:49 -07:00
.eslintignore Initial scaffolding (#1) 2019-08-02 09:28:49 -07:00
.eslintrc.json Add Android button to expo playground 2019-12-17 14:15:46 -08:00
.gitattributes Add a git attributes file for line ending settings (#180) 2020-04-24 11:38:36 -07:00
.gitignore Fix nuget pipeline (#481) 2020-09-24 10:16:06 -07:00
CODE_OF_CONDUCT.md Add a git attributes file for line ending settings (#180) 2020-04-24 11:38:36 -07:00
CONTRIBUTING.md Add documentation on stagedComponent (#693) 2021-05-18 12:34:49 -04:00
LICENSE Add a git attributes file for line ending settings (#180) 2020-04-24 11:38:36 -07:00
PRINCIPLES.MD Create PRINCIPLES.MD (#696) 2021-05-21 16:47:39 -07:00
README.md Update Readme with updated public docsite links 2021-02-25 14:10:15 -08:00
api-extractor.json Move api-extractor and tsconfig to shared folder 2020-03-25 13:23:14 -07:00
beachball.config.js Update to new version of beachball with working prepublish hook (#167) 2020-04-20 10:58:02 -07:00
lage.config.js Make the scripts buildable to allow typescript within (#403) 2020-08-19 15:52:37 -07:00
lerna.json Remove docs from yarn and lerna workspace (#179) 2020-04-23 17:42:55 -07:00
package.json Integrate dependency checker into CI and fix dependency errors (#392) 2020-08-17 14:54:38 -07:00
package.nuspec Remove Shimmer from NuGet 2021-05-11 14:06:55 -05:00
prettier.config.js Integrate dependency checker into CI and fix dependency errors (#392) 2020-08-17 14:54:38 -07:00
tsconfig.json Move api-extractor and tsconfig to shared folder 2020-03-25 13:23:14 -07:00
yarn.lock Fix tester-win32 web debugging / fast refresh (#698) 2021-05-19 18:38:30 -07:00

README.md

FluentUI React Native

npm version Build Status Build Status

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) Coming Soon

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
  1. 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';
  1. After importing the @fluentui/react-native package, you can use components such as Text and Checkbox in your JSX.
// In App.js in a new project
import React from 'react';
import { View, Text } from 'react-native';
import { Checkbox } from '@fluentui/react-native';
function HelloWorldApp() {
  return (
    <View
      style={{
        flex: 1,
        justifyContent: 'center',
        alignItems: 'center'
      }}
    >
      <Text>Hello, world!</Text>
      <Checkbox label="Hello World Checkbox" />
    </View>
  );
}
export default HelloWorldApp;

Documentation

Components and Controls

Our component documentation is hosted on the FluentUI documentation.

Expanding Component documentation

The FluentUI website is built out of the FluentUI repository. React-Native components and controls are documented in a 'cross' (cross-platform) directory in each component page directory, e.g. Button 'cross' directory. The FluentUI website can be run locally to verify changes, and 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

Our FluentUI framework documentation is found in this repository alongside the implementation.

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 bundle - will bundle all packages in the repo
  • yarn buildci - will build, lint, run tests, and bundle everything in the repo

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
  2. cd fluentui-react-native
  3. yarn
  4. 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 readme.

Beachball

This repo manages semantic versioning and publishing using Beachball. When contributing, make sure to run the following before making a pull request:

  1. yarn change will take you through a command line wizard to generate change files
  2. Make sure to commit and push the newly generated change file

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.