This is a React Native implementation of react-diff-simple-component which was inspired by and updated from react-diff.
Highlights differences between two strings, uses the diff module
npm install react-native-diff-component
http://cezary.github.io/react-diff/
import React from "react";
import Diff from "react-native-diff-component";
const MyComponent = () => {
return <Diff inputA="gogol" inputB="google" type="chars" />;
};
MIT