Skip to content

Commit

Permalink
Fix links (#2091)
Browse files Browse the repository at this point in the history
  • Loading branch information
joannaquu authored Sep 30, 2024
1 parent 56619e4 commit 9e9db43
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Demos/FluentUIDemo_iOS/appcenter-pre-build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash

echo 'Replacing AppCenterSecret placeholder...'
sed -i '' -e "s/$AppCenterSecretPlaceHolder/\"$AppCenterSecret\"/g" ./FluentUI.Demo/FluentUI.Demo/AppDelegate.swift
sed -i '' -e "s/$AppCenterSecretPlaceHolder/\"$AppCenterSecret\"/g" ./FluentUI.Demo/AppDelegate.swift
6 changes: 3 additions & 3 deletions Sources/FluentUI_iOS/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ Included in this repository is a demo that showcases all the currently available

To build and run the demo app follow these steps:
- Clone the [FluentUI](https://github.com/microsoft/fluentui-apple) repository.
- Open `Demos/FluentUIDemo_iOS/FluentUI.Demo/FluentUI.Demo.xcodeproj` in Xcode.
- Open `Demos/FluentUIDemo_iOS/FluentUI.Demo.xcodeproj` in Xcode.
- In the Xcode scheme menu choose `Demo.development` and choose an iOS Simulator(or Device if you have your own device provisioning profile) to deploy to.
- Make sure Swift Package Manager has download 2 dependencies(appcenter-sdk-apple and PLCrashReporter) for demo app.
- Build and Run the demo app

## Adding a new component
- Create a new folder of the Control name (ex. Foo) under under [FluentUI](FluentUI)
- Create a new folder of the Control name (ex. Foo) under [Components](Components)
- Create a new swift file. (ex. Foo.swift)
- Add Foo.swift in Fluent xcode project (All the files are in alphabetical order)
- Make sure your file is under FluentUILib target
- Create and add a demo controller in the Fluent demo app under [Demos](FluentUI.Demo/FluentUI.Demo/Demos) (ex. FooDemoController.swift)
- Create and add a demo controller in the Fluent demo app under [Demos](/Demos/FluentUIDemo_iOS/FluentUI.Demo/Demos) (ex. FooDemoController.swift)
- Add FooDemoController.swift to Fluent Demo xcode project (All the files are in alphabetical order)
- Make sure it is part of FluentUI.Demo Target membership
- Add your FooDemoController to the list of [DemoDescriptor](https://github.com/microsoft/fluentui-apple/blob/main/Demos/FluentUIDemo_iOS/FluentUI.Demo/Demos.swift)
Expand Down
8 changes: 4 additions & 4 deletions Sources/FluentUI_iOS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FluentUI for iOS is a native framework that provides the Microsoft UI experience

## Colors and Typography

FluentUI for iOS provides [colors](FluentUI/Core/Colors.swift) and [typography](FluentUI/Core/Fonts.swift) core to experiences within the Fluent Design language.
FluentUI for iOS provides [colors](Core/FluentTheme+Tokens.swift) and [typography](Core/FluentTheme+Tokens.swift) core to experiences within the Fluent Design language.

## Controls

Expand Down Expand Up @@ -54,15 +54,15 @@ Some of the controls available include:
- TableViewCellShimmer
- Tooltip

A full list of currently supported controls can be found here: [FluentUI](FluentUI).
A full list of currently supported controls can be found here: [Components](Components).

## Demo app

Included in this repository is a demo of currently implemented controls. A full list of implemented controls available in the demo can be found here: [Demos](FluentUI.Demo/FluentUI.Demo/Demos).
Included in this repository is a demo of currently implemented controls. A full list of implemented controls available in the demo can be found here: [Demos](/Demos/FluentUIDemo_iOS/FluentUI.Demo/Demos).

To build and deploy the demo follow these steps:
- Download or clone the [FluentUI for iOS](https://github.com/microsoft/fluentui-apple) repository.
- Open `Demos/FluentUIDemo_iOS/FluentUI.Demo/FluentUI.Demo.xcodeproj` in Xcode.
- Open `Demos/FluentUIDemo_iOS/FluentUI.Demo.xcodeproj` in Xcode.
- In the Xcode scheme menu choose `Demo.development` and choose a device to deploy to.
- Once deployed you can choose a control to demo from the list of controls on the selected device.

Expand Down
4 changes: 2 additions & 2 deletions Sources/FluentUI_macOS/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ To build and deploy the demo follow these steps:
- Once deployed you can choose a control to test from the list of controls in the left pane.

### Adding a new component
- Create a new folder of the Control name (ex. Foo) under [FluentUI](FluentUI)
- Create a new folder of the Control name (ex. Foo) under [Components](Components)
- Create a new swift file. (ex. Foo.swift)
- Add Foo.swift and its folder in FluentUI xcode project (All the files are in alphabetical order)
- Make sure your file is under FluentUI framework target
- Create and add a test ViewController under [FluentUITestViewControllers](FluentUITestViewControllers) (ex. TestFooViewController.swift)
- Create and add a test ViewController under [FluentUITestViewControllers](/Demos/FluentUIDemo_macOS/FluentUITestViewControllers) (ex. TestFooViewController.swift)
- Add TestFooViewController.swift to FluentUI xcode project (All the files are in alphabetical order)
- Make sure it is part of FluentUITestViewControllers Target membership
- Add TestFooViewController to the array in [TestViewContronllers.swift](https://github.com/microsoft/fluentui-apple/blob/main/Demos/FluentUIDemo_macOS/FluentUITestViewControllers/TestViewControllers.swift)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ Some of the controls available include:
- Separator


A full list of currently supported controls can be found here: [FluentUI](FluentUI).
A full list of currently supported controls can be found here: [Components](Components).

0 comments on commit 9e9db43

Please sign in to comment.