Here is a collection of implementation strategies to manage state on Framer X. Feel free to contribute your own strategies and ideas.
Examples marked with a checkmark mean that some examples has been provided on this repo.
| global.THREE = require("three"); | |
| const canvasSketch = require('canvas-sketch'); | |
| const Random = require('canvas-sketch-util/random'); | |
| const gradientHeight = 512; | |
| const settings = { | |
| dimensions: [ 2048, gradientHeight * 2 ] | |
| }; |
| AbortDocumentVersionUpload | |
| AbortEnvironmentUpdate | |
| AbortMultipartUpload | |
| AbortVaultLock | |
| AcceptAccountMapping | |
| AcceptCertificateTransfer | |
| AcceptDelegate | |
| AcceptDirectConnectGatewayAssociationProposal | |
| AcceptFxPaymentCurrencyTermsAndConditions | |
| AcceptHandshake |
| ffmpeg -i input.mov -pix_fmt yuv420p -vcodec libx264 -vf scale=1920:-1 -acodec aac -vb 1024k -minrate 1024k -maxrate 1024k -bufsize 1024k -ar 44100 -ac 2 -strict experimental -r 30 outpu.mp4 |
| [ | |
| { | |
| 'Version number': 0.8, | |
| 'Release date': '1 October 2012 (2012-10-01)', | |
| 'Significant changes': '' | |
| }, | |
| { | |
| 'Version number': 0.9, | |
| 'Release date': '18 June 2013 (2013-06-18)', | |
| 'Significant changes': '' |
Here is a collection of implementation strategies to manage state on Framer X. Feel free to contribute your own strategies and ideas.
Examples marked with a checkmark mean that some examples has been provided on this repo.
| license: mit |
| // WIP Refactored from https://github.com/aleksik/react-scratchcard/ | |
| import * as React from 'react' | |
| import { Frame, addPropertyControls, ControlType } from 'framer' | |
| export function ScratchCard({ width, height, children, image: source, finishPercent }) { | |
| const [loaded, setLoaded] = React.useState(false) | |
| const [context, setContext] = React.useState(false) | |
| const [isDrawing, setIsDrawing] = React.useState(false) | |
| const [lastPoint, updateLastPoint] = React.useState(null) |
| import * as React from 'react' | |
| import { addPropertyControls, ControlType, FrameProps, Frame } from 'framer' | |
| import reactElementToJSXString from 'react-element-to-jsx-string' | |
| import Highlight, { defaultProps } from 'prism-react-renderer' | |
| import { themes } from './themes' | |
| import Clipboard from 'react-clipboard.js' | |
| // @steveruizok | |
| // Define type of property |
pkill "Touch Bar agent";
killall "ControlStrip";
| import * as React from 'react' | |
| import styled from '@emotion/styled' | |
| import { css } from '@emotion/core' | |
| import { addPropertyControls, ControlType } from 'framer' | |
| type DataTypes = { | |
| format: 'data40' | 'data30' | 'data20' | 'data10' | |
| } | |
| interface IDataTextProps { |