Ionicons use

김종민·2022년 4월 6일
0

React-Native(1. Movie)

목록 보기
6/20

import { Ionicons } from '@expo/vector-icons'

https://icons.expo.fyi/


<Tab.Screen
        name="Movies"
        component={Movies}
        options={{
          tabBarIcon: ({ focused, color, size }) => {
            return (
              <Ionicons
                name={focused ? 'film' : 'film-outline'}
                size={24}
                color={color}
              />
            )
          },
        }}
      />~~~~
      
      
profile
코딩하는초딩쌤

0개의 댓글