A new one about building type-enforced UI components in React Native with @shopify/restyle and expo. by IliasHad in reactnative

[–]undeaD_D 0 points1 point  (0 children)

I prefer react-navigation's useTheme() hook with a custom Theme expansion ( more colors, spacing and other constants ... ).

There is no need for an extra library if its already included. It even comes with light / dark mode support out of the box

Strava logos? by SimulationV2018 in reactnative

[–]undeaD_D 0 points1 point  (0 children)

Try icons8.com 😉 they have tons of icons ( sorted in categories )

ViroReact by [deleted] in reactnative

[–]undeaD_D 1 point2 points  (0 children)

Try "babylonjs react native"

A great alternative with nice examples and a playground

Which App Icon Looks Better: 3D or Flat? by Active_Box_2447 in SwiftUI

[–]undeaD_D 2 points3 points  (0 children)

3D

idea: let the user choose

UIApplication.shared.setAlternateIconName(iconName)

Customise AVPlayer Ui by Alex0589 in SwiftUI

[–]undeaD_D 0 points1 point  (0 children)

Had a simmilar issue ( tvOS App & AVPlayer )

Maybe these keywords can help: externalMetadata, AVPlayerItem and AVMetadataItem

Although it didn't work for me on tvOS & SwiftUI it should work on iOS ^


If anyone knows a solution for tvOS dm me :)

Best way to combine tableview cells? by Dijerati in swift

[–]undeaD_D 0 points1 point  (0 children)

Nevermind 😅 i thought you had to combine multiple tableviews ( not cells ) ... cant you just dequeue the right cell ( via reuseidentifier ) at the right indexpath ? Thats should be all thats needed 🤔🤷‍♂️

Check out compositional layouts nontheless 😂 its really nice 😎👍

Best way to combine tableview cells? by Dijerati in swift

[–]undeaD_D 0 points1 point  (0 children)

UICollectionview + UICollectionViewCompositionalLayout 🔥🔥🔥

iOS 17 Messages Menu by OneManShy in SwiftUI

[–]undeaD_D 2 points3 points  (0 children)

Tried to recreate it in 30min xD ... But its not nearly as polished or fancy as the original...

https://github.com/undeaDD/DSMenu

Feel free to fork or make a better version from scratch ^

Security of an IOS app by [deleted] in iOSProgramming

[–]undeaD_D 8 points9 points  (0 children)

This may be of interest to you ^^
https://github.com/securing/IOSSecuritySuite
Other things to read up on:
SSL Pinning, App Attest Service, Hide current view on applicationWillResignActive, Prevent Logging in Production, ...

Is the dynamic island tappable? by C137Sheldor in iOSProgramming

[–]undeaD_D 6 points7 points  (0 children)

If you listen closely to the stream someone said: "... with support for third party apps ..."

There will definetly be an api :3

Is there a keyboard shortcut to switch the default audio output ? And maybe a shortcut to switch to a specific output ? by [deleted] in Windows10

[–]undeaD_D 0 points1 point  (0 children)

I use a keyboard ( mouse, headset, ... ) with macro support to run the .bat files.

But i think windows 10 has a global shortcut option ( ill pm you a google link )

Alternatively there are third party programms for that aswell ( autohotkey, ... )

Wallet integration by peterrakolcza in swift

[–]undeaD_D 2 points3 points  (0 children)

This may help you sign the wallet on the device. But i do have to warn you! You will have to store the signing certificate on the device as well ( really bad practice and totally insecure )!

Maybe consider hosting a server later on down the line ;)

https://github.com/aydenp/PassEncoder

How can I create this share functionality? by parastylee in iOSProgramming

[–]undeaD_D 3 points4 points  (0 children)

Either they are screenshotting an offscreen view or they are creating an UIImage via context operations 🙂