Preparing search index...
    • ModalImageSelect component - Main image selection modal

      Renders a modal interface that allows users to select images from multiple sources. Provides a horizontal gallery of existing images and buttons for camera/gallery access.

      Parameters

      • props: ModalImageSelectProps

        The modal image select properties

        Props interface for ModalImageSelect component Defines the callback functions and data needed for image selection workflow

        • arrImg: string[]

          Array of available image URIs to display in the selection gallery

        • onSelectFunction: (img: string) => void

          Callback function called when user selects an existing image

        • onDismissFunction: () => void

          Callback function called when user dismisses the modal

        • onImagesUpdated: (imageUri: string) => void

          Callback function called when a new image is captured/selected and should be added to the array

        • OptionalautoSelect?: boolean

          When true, camera/gallery picks immediately trigger onSelectFunction (edit mode)

      Returns Element

      JSX.Element - Modal component with image selection interface