skip to Main Content

How to write "Podfile" in flutter(ios)

First code I use the Podfile below platform :ios, '11.0' use_frameworks! target 'RunnerTests' do inherit! :search_paths ## dart: PermissionGroup.camera 'PERMISSION_CAMERA=1' end end And then 'pod install'. The result message is 'Pod installation complete! There are 0 dependencies from the Podfile…

VIEW QUESTION

Ios swift – How to fix a list

I am making an app with Swift and I have a question about lists. // Display the list of the incorrect words List { ForEach(arrayToPass, id: .self) { index in Text("・ (displayeWord[index].word) : (displayeWord[index].meaning1) ") .foregroundStyle(.black) .font(.title2) .padding(10) .bold() .listRowBackground(Color.white)…

VIEW QUESTION
Back To Top
Search