William Spiegel
Mobile Developer
Hey there! I enjoy building user interfaces and getting creative with utilizing various APIs in order to deliver the best possible user experience with React Native, React, and Flutter. Check out my GitHub as I open source and polish some of my old projects and build some new projects from time to time. Feel free to get in touch with me on other platforms as well.
- Swipey for RedditBuilt in Flutter for iOS, Android, MacOS, Windows, and Web
The idea for Swipey sprung up from my frustrations with the official Reddit app. There are many long-term bugs with the official app such as collapsing comments spontaneously not working in the middle of browsing content and tons of design elements not fit for a mobile context. I am building Swipey around the way I normally browse Reddit — in a carousel orientation. The app always stays in a carousel screen, with navigation between subreddits being served in a bottom sheet for better thumb reachability.
- MyVax and MIMI-RxBuilt in React Native for iOS and Android
MyVax and MIMI-Rx are apps owned by EagleForce targeted towards the healthcare space for patients and providers to have their medications, immunizations, vitals, and healthcare documents all in one digital place. They are essentially the same app but with different branding. MyVax just has some features in the sidebar taken away to cater to everyday users more, and it is also more heavily marketed because of this.
- Swipey Classic for Reddit Built in React Native for iOS and Android
This was my first implementation of Swipey. One of the major pitfalls of trying to make complicated and uncommon UI features such as deeply nested collapsible comments is the lack of first party support. Using a cross platform framework powered by JavaScript runs into many issues such as third party packages abusing JavaScript's single threaded limitation for animations instead of offloading these animations to native threads with packages like React Native Reanimated. Issues like this lead to React Native state updates to be blocked longer than expected, resulting in slower response time to user input. This issue is magnified on Android devices since their CPUs handle single threaded operations much worse compared to iPhones. React Native is very useful for general business use where there isn't so many things going on at once in a UI, and it excels at rapid prototyping (even more than Flutter in my opinion). Unfortunately, it does not meet my performance standards specifically with this project due to the complex business logic that I want to achieve, so I am uncomfortable listing this implementation on the Play Store and App Store. I have open sourced and cleaned up this project for evaluation purposes and am open to Pull Requests.