Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Not working on iphone 8 or iphone with touch ID #42

Open
BoogieManN8 opened this issue Dec 18, 2024 · 1 comment
Open

Not working on iphone 8 or iphone with touch ID #42

BoogieManN8 opened this issue Dec 18, 2024 · 1 comment

Comments

@BoogieManN8
Copy link

i will include debug output here , below . works fine on other iphones but not ones with small screen . issue occurs on swiftui , i did everything as it was in example of swiftui project .

debug outputs:
2024-12-18 12:33:59.373920+0400 bingoshmingo[1466:290925] [Unknown process name] clip: empty path.

2024-12-18 12:33:52.867369+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] Looking for Previews JIT link entry point.
2024-12-18 12:33:52.867952+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] No Previews JIT entry point found.
2024-12-18 12:33:52.867962+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] Gave PreviewsInjection a chance to run and it returned, continuing with debug dylib.
2024-12-18 12:33:52.867966+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] Looking for main entry point.
2024-12-18 12:33:52.867969+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] Opening debug dylib with '@rpath/bingoshmingo.debug.dylib'
2024-12-18 12:33:52.867983+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] Debug dylib handle: 0xbffad9d0
2024-12-18 12:33:52.867988+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] No entry point found. Checking for alias.
2024-12-18 12:33:52.867993+0400 bingoshmingo[1466:290925] [PreviewsAgentExecutorLibrary] Calling provided entry point.

view and its frames :

var wheelView: some View {
        ZStack {
            Circle()
                .fill(Color.theme.orange)
                .frame(width: isSmall ? 330 : 380, height: isSmall ? 330 : 380)
            
            SFWView(prizes: $viewModel.prizes, configuration: $viewModel.wheelConfiguration, isMonochrome: $viewModel.isMonochrome, isWithLine: $viewModel.drawCurvedLine, onSpinButtonTap: $viewModel.onRotateTap, isFinished: $isFinished, rotateToIndex: viewModel.rotateToIndex.eraseToAnyPublisher(), shouldRedraw: viewModel.shouldRedraw.eraseToAnyPublisher())
                .frame(minWidth: 50, idealWidth: isSmall ? 280 : 330, maxWidth: isSmall ? 280 : 330, minHeight: 50, idealHeight: isSmall ? 280 : 330, maxHeight: isSmall ? 280 : 330, alignment: .center)
                .aspectRatio(1, contentMode: .fit)
                .padding(10)
                .disabled(true)
            
            
            Image("wheel.pointer")
                .resizable()
                .scaledToFill()
                .frame(width: 34, height: 34)
                .padding(.top, 400)
            
            
        }
    }
    ```
@BoogieManN8
Copy link
Author

BoogieManN8 commented Dec 24, 2024

checked and it was navigation stack's issue @sh-khashimov @JohannesBauer97 @M-I-N

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant