A framework for building native apps with React. http://facebook.github.io/react-native/
Go to file
Valentin Shergin cdea3c574b Fixed crash in ReactTextInputLocalData
Summary:
Motivation:

(SUDDENLY) There is a thing on Android called SpanWather, and their purpose is to notify "the watcher" about span-related changes in SpannableString. The idea is: some special kind of span can have some logic to prevent or tweak interleaving with some another kind of spans. To do so, it has to implement SpanWather interface.
So, EditText uses this to control internal spannable object (!) and SUDDENLY (#><) calls internal "layout" method as a reaction to adding new spans. So, when we are cloning SpannableString, we are (re)applying same span objects to a new spannable instance, and it causes notifying other spans in the string, and they notify EditText, and the EditText does relayout and... BOOM!
So, the solution is, easy, we should use SpannableStringBuilder instead of SpannableString because it does not notify SpanWather during cloning.

See:
https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/text/SpannableStringBuilder.java#101
(the first argument is `false`).
https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/text/SpannableStringBuilder.java#678
Compare with:
https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/text/SpannableStringInternal.java#43

Why? I believe because SpannableStringBuilder objects are "unfinished" by design, and documentation said: "it is the caller's responsibility to restore invariants [among spans]". As we do an exact clone of the string, that's perfectly okay to assume that all invariants were already satisfied for original string.

Reviewed By: achen1

Differential Revision: D5970940

fbshipit-source-id: 590ca0e3aede4470b809c7db527c5d55ddf5edb4
2017-10-03 17:37:45 -07:00
.circleci Migrate to Circle 2.0 2017-09-21 14:01:30 -07:00
.github add node/npm version to ISSUE_TEMPLATE.md 2017-09-19 15:05:35 -07:00
ContainerShip Move HelloWorld template to a single index.js entry point 2017-08-03 14:02:43 -07:00
IntegrationTests @allow-large-files Flow v0.54.0 2017-09-06 03:33:43 -07:00
Libraries Re-render views when direction changes 2017-10-03 13:01:06 -07:00
RNTester Re-render views when direction changes 2017-10-03 13:01:06 -07:00
React Re-render views when direction changes 2017-10-03 13:01:06 -07:00
ReactAndroid Fixed crash in ReactTextInputLocalData 2017-10-03 17:37:45 -07:00
ReactCommon Add isNetworkInspected to check if a JS VM needs to be paused on launch 2017-10-03 06:03:23 -07:00
babel-preset Upgrade babel-plugin-react-transform to v3.x 2017-09-14 07:36:43 -07:00
blog Create 2017-09-21-react-native-monthly-4.md 2017-09-24 15:33:19 -07:00
bots Add rigdern to the issue task force 2017-09-21 14:17:34 -07:00
danger Flag large pull requests, add large-pr command 2017-08-16 21:00:44 -07:00
docs Modernize docs: remove 'use strict' from docs -- es6 has 'use strict' by default 2017-10-03 17:17:12 -07:00
flow Update typings for Promise.all() for D5827319 2017-09-26 11:38:31 -07:00
gradle/wrapper
jest Validate that JS and Native code versions match for RN releases 2017-09-27 18:31:15 -07:00
keystores
lib Revert D5409825: [RN] Convert easy files to Prettier 2017-07-12 19:23:58 -07:00
local-cli Upgrade Flow to v0.56.0 2017-10-02 21:11:05 -07:00
react-native-cli Revert D5409825: [RN] Convert easy files to Prettier 2017-07-12 19:23:58 -07:00
react-native-git-upgrade Revert D5409825: [RN] Convert easy files to Prettier 2017-07-12 19:23:58 -07:00
scripts Make ios-install-third-party.sh more robust 2017-09-28 13:03:26 -07:00
third-party-podspecs Apple TV Cocoapods support 2017-07-18 15:15:59 -07:00
website Add missing website dep 2017-09-27 14:40:24 -07:00
.buckconfig update gitignore & fix links 2017-05-22 13:03:50 -07:00
.buckjavaargs
.editorconfig
.eslintignore Exclude the dangerfile from eslint. 2017-07-19 13:49:32 -07:00
.eslintrc Bump react/jsx-no-undef (undefined require) from warning to error 2017-09-15 12:01:04 -07:00
.flowconfig Upgrade Flow to v0.56.0 2017-10-02 21:11:05 -07:00
.gitattributes
.gitignore Adds Danger support 2017-07-18 11:16:46 -07:00
.npmignore
.travis.yml Use Node 8 instead of 7 in Travis CI 2017-09-12 10:15:58 -07:00
CONTRIBUTING.md Modernize docs: remove 'use strict' from docs -- es6 has 'use strict' by default 2017-10-03 17:17:12 -07:00
DockerTests.md
Jenkinsfile
LICENSE
LICENSE-docs
PATENTS
README.md Changed React to React Native in README.md 2017-09-30 14:32:28 -07:00
React.podspec BREAKING: iOS: Fix case sensitivity build warning in Xcode 8.3 2017-08-25 04:45:06 -07:00
Releases.md Update Releases.md 2017-07-17 14:22:43 -07:00
breaking-changes.md
build.gradle
cli.js Revert D5409825: [RN] Convert easy files to Prettier 2017-07-12 19:23:58 -07:00
gradlew
gradlew.bat
jest-preset.json Asset basenames in Jest snapshots 2017-09-06 03:33:43 -07:00
package.json Upgrade Flow to v0.56.0 2017-10-02 21:11:05 -07:00
react.gradle
rn-cli.config.js Make the runBeforeMainModule config param to RN repo and make it absolute 2017-09-26 13:06:14 -07:00
rn-get-polyfills.js Move Array<string> to $ReadOnlyArray<string>. Separate polyfill list into a file. 2017-07-13 03:38:23 -07:00
runXcodeTests.sh
settings.gradle Cleanup settings.gradle 2017-07-28 07:51:09 -07:00
setupBabel.js Make prospective syntax compatible 2017-08-16 16:42:16 -07:00

README.md

React Native · Travis CI Status Circle CI Status npm version PRs Welcome

Learn once, write anywhere: Build mobile apps with React.

  • Build native mobile apps using JavaScript and React: React Native lets you build mobile apps using only JavaScript. It uses the same design as React, letting you compose a rich mobile UI from declarative components.
  • A React Native app is a real mobile app: With React Native, you don't build a "mobile web app", an "HTML5 app", or a "hybrid app". You build a real mobile app that's indistinguishable from an app built using Objective-C, Java, or Swift. React Native uses the same fundamental UI building blocks as regular iOS and Android apps. You just put those building blocks together using JavaScript and React.
  • Don't waste time recompiling: React Native lets you build your app faster. Instead of recompiling, you can reload your app instantly. With hot reloading, you can even run new code while retaining your application state. Give it a try - it's a magical experience.
  • Use native code when you need to: React Native combines smoothly with components written in Objective-C, Java, or Swift. It's simple to drop down to native code if you need to optimize a few aspects of your application. It's also easy to build part of your app in React Native, and part of your app using native code directly - that's how the Facebook app works.

The focus of React Native is on developer efficiency across all the platforms you care about - learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native.

See the official React Native website for an introduction to React Native.

Supported operating systems are >= Android 4.1 (API 16) and >= iOS 8.0.

Getting Started

Follow the Getting Started guide. The recommended way to install React Native depends on your project. Here you can find short guides for the most common scenarios:

Documentation

The websites documentation is divided into multiple sections.

Another great way to learn more about the components and APIs included with React Native is to read their source. Look under the Libraries/Components directory for components like ScrollView and TextInput, for example. The RNTester example is also here to demonstrate some of the ways to use these components. From the source you can get an accurate understanding of each components behavior and API.

The React Native documentation only discusses the components, APIs and topics specific to React Native (React on iOS and Android). For further documentation on the React API that is shared between React Native and React DOM, refer to the React documentation.

Upgrading

React Native is under active development. See the guide on upgrading React Native to keep your project up-to-date.

Contributing

Read below to learn how you can take part in improving React Native.

Code of Conduct

Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.

Contributing Guide

Read our contributing guide to learn about our development process, how to propose bug fixes and improvements, and how to build and test your changes to React Native.

Beginner Friendly Bugs

We have a list of beginner friendly issues to help you get your feet wet in the React Native codebase and familiar with our contribution process. This is a great place to get started.

License

React Native is BSD licensed. We also provide an additional patent grant.

React documentation is Creative Commons licensed.