I want to use emoji like this in my iOS app and release it on the App Store.
struct ContentView: View {
@State private var move = false
var body: some View {
VStack {
Text("👻")
.font(.largeTitle)
.position(x: move ? 50 : 400)
Button("Move") {
withAnimation(.linear(duration: 2)) {
move.toggle()
}
}
}
}
}
Are there any other problems with this?(like legal issues, etc.)