Posts

Post not yet marked as solved
0 Replies
77 Views
Hi, I work on an App, that can generate videos.(or it should)I don’t know which Frameworks/library’s you can use to do this.I have input(image,pos,…) from this information(s) I want generate a video.The code should be compatible with SwiftUI, so that I can have sth. Like a live preview in iMovi or clips.(My current code is flexible, so it don’t matters if I have to restructure some small thinks) Thanks in advance
Posted
by NaimadDev.
Last updated
.
Post not yet marked as solved
0 Replies
112 Views
I want to make a Dropdown-Menü like in pages(I mean the brush button).I use SwiftUI but at first my menu looks not like this and it don‘t work.If I press any button the menu closes.I want that the menu looks like the menu in pages/keynote and also works without that you have to open the menu every time u press a button.My current code looks like this: import UniformTypeIdentifiers struct ContentView: View {     var body: some View {         NavigationView {             Text("")             .toolbar {                 ToolbarItem(placement: ToolbarItemPlacement.navigationBarTrailing) {                     Menu {                         Button("button"){                             print("Pressed")                         }                     } label: {                         Label(                             title: { Text("Settings") },                             icon: { Image(systemName: "gearshape.fill") }                         )                     }                 }             }         }.navigationViewStyle(StackNavigationViewStyle())     } } Tanks in advance(if u say it so in English) Edit: I work on a iPad(Because of that I have this style at the NavigationView)
Posted
by NaimadDev.
Last updated
.