barModel.js 277 B

1234567891011
  1. import { StatusBar } from "react-native";
  2. export default {
  3. state: {
  4. background: "#FFC21C",
  5. },
  6. actions: ({ model, setState }) => ({
  7. changeBackground(background) {
  8. StatusBar.setBackgroundColor(background);
  9. },
  10. }),
  11. };