department-of-veterans-affairs / va-mobile-library

https://department-of-veterans-affairs.github.io/va-mobile-library/
ISC License
0 stars 0 forks source link

[Discovery] Determine how many components require native functionality #192

Open narin opened 4 months ago

narin commented 4 months ago

Description

Up until we started working on the Link component, our components have been completely written in React/TypeScript. Consequently, our components package is set up to only export or expose TypeScript files. Expo related code is used for development only and therefore not exported.

The calendar functionality for the link component (#169) is the first feature that we've come across that requires native functionality. After further investigation, our project structure would have to change and we may have to move from Expo to a bare RN project in order to support native functionality. Removing Expo would also mean that we'd lose some convenient developer functionality such as QR code scanning and simple configuration.

This begs the question of whether custom native functionality is within the scope of this component library. Before we make any major changes to the code base, we should first determine if and how many other current existing components might require native functionality.

Acceptance Criteria