Amazon Developer

as

Settings
Sign out
Notifications
Alexa
Amazonアプリストア
Ring
AWS
ドキュメント
Support
Contact Us
My Cases
開発
設計と開発
公開
リファレンス
サポート
アクセスいただきありがとうございます。こちらのページは現在英語のみのご用意となっております。順次日本語化を進めてまいりますので、ご理解のほどよろしくお願いいたします。

ActivityIndicator

Displays a circular loading indicator.

Example

Copied to clipboard.


import React from 'react';
import {ActivityIndicator, StyleSheet} from 'react-native';
import {SafeAreaView, SafeAreaProvider} from 'react-native-safe-area-context';

const App = () => (
  <SafeAreaProvider>
    <SafeAreaView style={[styles.container, styles.horizontal]}>
      <ActivityIndicator />
      <ActivityIndicator size="large" />
      <ActivityIndicator size="small" color="#0000ff" />
      <ActivityIndicator size="large" color="#00ff00" />
    </SafeAreaView>
  </SafeAreaProvider>
);

const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
  },
  horizontal: {
    flexDirection: 'row',
    justifyContent: 'space-around',
    padding: 10,
  },
});

export default App;

Reference

Props

View Props

Inherits View Props.


animating

Whether to show the indicator (true) or hide it (false).

Type Default
bool true

color

The foreground color of the spinner.

Type Default
color null (system accent default color)
Android / '#999999' iOS

hidesWhenStopped iOS

Whether the indicator should hide when not animating.

Type Default
bool true

ref

A ref setter that will be assigned an element node when mounted.


size

Size of the indicator.

Type Default
enum('small', 'large') / number Android 'small'

Last updated: Jul 08, 2026