Rory
- 活动总数 10
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 1
- 订阅数 4
-
Rory 创建了一个帖子, Quick refactoring of inline JS to styles object?
I am working on a React Native project. Many of the components in the project use inline styles. <Flex style={{ paddingBottom: 2, paddingLeft: 2, }} direction="column"> <Flex.Item> <Text style=... -
Rory 创建了一个帖子, Option + Space to open terminal means the command I type doesn't work
I have Option + Space set to open my terminal.It sometimes adds a space character to the command line. So before I start typing, a space character is already there. This means I end up typing (for ... -
Rory 创建了一个帖子, Importing Settings does not import settings set in Preferences
I am using Import Settings and Export Settings to toggle between two separate settings configs.In one config, I want Tools > Browsers > Show browser popup in the editor to be checked. In the other ... -
Rory 进行了评论, -
Rory 创建了一个帖子, How do I extract a portion of JSX into its own method?
Given I have the following: export default class Blah extends React.Component { render() { return ( <div> <div> <div>foo</div> </div> <...