| Property | Figma (Compass v2) | Repo (MUI Theme) | Difference |
|---|---|---|---|
| Variants | Contained, Text |
contained, outlined, text |
Repo has extra outlined variant not in Figma |
| Sizes | Large, Small |
medium, small |
Naming differs; Figma "Large" ≈ Repo "medium" |
| Colors | Primary, Critical |
primary, secondary, success, inherit |
Figma has Critical (red); Repo lacks Critical but has secondary/success |
| States | Enabled, Hovered, Disabled, Focused, Pressed, Loading |
Enabled, Hover, Disabled, Focus, Active (via &:active) |
Repo lacks explicit Loading state styling |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Maestro E2e Tests - Android | |
| on: | |
| push: | |
| branches: ['main'] | |
| jobs: | |
| fingerprint: | |
| type: fingerprint | |
| environment: preview |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // generted by Figma MCP and Claude Sonnet 4.5 in Copilot | |
| import React from 'react'; | |
| import { | |
| View, | |
| Text, | |
| TouchableOpacity, | |
| StyleSheet, | |
| StatusBar, | |
| Image, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This file holds the main code for plugins. Code in this file has access to | |
| // the *figma document* via the figma global object. | |
| // You can access browser APIs in the <script> tag inside "ui.html" which has a | |
| // full browser environment (See https://www.figma.com/plugin-docs/how-plugins-run). | |
| const PERCY_TOKEN = '' | |
| const BASE_PERCY_API_URL = '' | |
| type PercyBuild = { | |
| data: [{ id: string }] |
Your app is already running on the New Architecture!
- ✅ React Native 0.76.9 (New Architecture enabled by default)
- ✅ Expo SDK 52.0.47 (Full New Architecture support)
- ✅ Hermes JS Engine enabled
- ✅
newArchEnabled: trueconfigured inapp.config.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict' | |
| const query = require('./query') | |
| const { to } = require('await-to-js') | |
| const middy = require('middy') | |
| const { cors } = require('middy/middlewares') | |
| const getCountries = async () => { | |
| let err | |
| let results |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { PropsWithChildren, FC } from 'react' | |
| import classnames from 'classnames' | |
| type TypographyProps = PropsWithChildren<{ color?: string; className?: string; title?: string }> | |
| export const H1: FC<TypographyProps> = ({ | |
| children, | |
| color = '', | |
| className: customClasses, | |
| ...props |
- Inspiration from WPILib
- Create a new file in
.github/workflows/build.yml - Copy the contents of
build.ymlinto that new file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import {createStyled} from '@mui/system'; | |
| import {useTheme} from '@mui/material'; | |
| import type { MuiCustomThemeT } from './types'; | |
| export const muiStyled = createStyled<MuiCustomThemeT>(); | |
| export const muiUseTheme = useTheme<MuiCustomThemeT>(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Dev Summary | |
| [Figma](link) | |
| [JIRA](link) | |
| <!-- A detailed outline of what this pull requests includes --> | |
| ## Release Notes | |
| <!-- |
NewerOlder