Android TaskDescription component for React Native
Allows configuration of the Android TaskDescription, allowing you to change the background color and text of the TaskDescription shown on the recent apps Overview Cards. Changing the icon is not yet supported.
import TaskDescriptionAndroid from 'react-native-android-taskdescription'
// ...
render() {
return (
<View>
<TaskDescriptionAndroid backgroundColor="#8fa224" />
<Text>My awesome app!</Text>
</View>
)
}
import TaskDescriptionAndroid from 'react-native-android-taskdescription'
// ...
render() {
return (
<View>
<TaskDescriptionAndroid label="Super Awesome App" />
<Text>My awesome app!</Text>
</View>
)
}
import TaskDescriptionAndroid from 'react-native-android-taskdescription'
// ...render
render() {
return (
<View>
<TaskDescriptionAndroid backgroundColor="#5c34d2" label="Super Awesome App" />
<Text>My awesome app!</Text>
</View>
)
}
npm install --save react-native-android-taskdescription
IMPORTANT: for RN <= 0.28, please use version 0.2.0 and follow the README installation and usage instructions from that version, ie npm install --save [email protected]
After installing, run:
react-native link
...
include ':react-native-android-taskdescription'
project(':react-native-android-taskdescription').projectDir = new File(settingsDir, '../node_modules/react-native-android-taskdescription/android')
...
dependencies {
...
compile project(':react-native-android-taskdescription')
}
import com.jwarby.reactnativeandroidtaskdescription.TaskDescriptionPackage; // <--- import package
// ...
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new TaskDescriptionPackage() // <--- add package
);
}