react-native-device-info - v15.0.1
    Preparing search index...

    Function useManufacturer

    • React hook that resolves to the device manufacturer string.

      Compatibility: iOS ✅ Android ✅ Windows ✅ Web ❌ visionOS ✅

      Returns AsyncHookResult<string>

      function ManufacturerLine() {
      const { result: manufacturer } = useManufacturer();
      return <Text>Made by {manufacturer}</Text>;
      }