SwiftUI - Swipe Actions on List | iOS 15 & Xcode 13

  Рет қаралды 13,586

Sean Allen

Sean Allen

Күн бұрын

Пікірлер: 31
@Alejandro_Away
@Alejandro_Away 3 жыл бұрын
What worked for me was having .swipeActions modifier be for the NavigationLink inside a ForEach which is inside a List view
@JeffCournoyerATC
@JeffCournoyerATC 3 жыл бұрын
Hey Sean, great video! Do you think they’re going to fix the functionality with the swipeActions not being available inside a NavigatoinView? The mail app on iOS does this so it might work. Otherwise how would you suggest making these cells interactive to pull up another view?
@kavinda_dilshan_paramsoodi
@kavinda_dilshan_paramsoodi 3 жыл бұрын
NavigationView{ List{ ForEach(VideoListArray){ video in NavigationLink( destination: VideoDetailView(video: video) ,label: { VideoCell(video: video) }) .swipeActions(edge: .trailing, allowsFullSwipe: false) { Button(role: .destructive){ print("Delete") }label:{ Image(systemName: "trash.circle.fill") } } } } Hello Sean bro. I think your swipe actions didn't work with the navigation links you created right. Because you need to set swipe actions not to the video cell you created but for the navigation link. For each loop is also needed. Thanks for making this video. I learned these function from you video. Then i realised how to solve swipe action problem on the navigation link.
@seanallen
@seanallen 3 жыл бұрын
Nice! Thanks for sharing. I'll have to test that out. I appreciate it!
@Eugene.Berezin
@Eugene.Berezin 3 жыл бұрын
Yup! I’ve noticed that too. Removing a separator for a row is also not working if it’s not in ForEach!
@gregohb
@gregohb 3 жыл бұрын
Is there a download link for the code?
@shaxzodziyadullayev9115
@shaxzodziyadullayev9115 Жыл бұрын
How to programmatically show swipe action buttons on image tap in that row?
@jalexromero
@jalexromero 2 жыл бұрын
wow awesome video! I wish I had watched this Monday, as I spent last two days figuring out lists. I have a question, hope you see it and are able to comment... when you add a navigation link to the list, it adds a ">" symbol on the right hand side of every list element... is there a way to eliminate this? Just curious, as I don't like how it looks, is redundant, and steals real estate for your content... Anyway hope you have any suggestions here to eliminate this navigation symbol. I've tried a few things but so far not working and need to move on to next part of my project... Thanks & keep up the great videos!
@FlashGamer521
@FlashGamer521 Жыл бұрын
I don't see any List Tutorial code in the Description...
@FabricioMTL
@FabricioMTL 2 жыл бұрын
Hey Sean how to do this when you have a NavigationLink
@cristopherescorcia3276
@cristopherescorcia3276 3 жыл бұрын
Man love your videos, you are the reason i am learning Swift
@KimbrellBrad
@KimbrellBrad 3 жыл бұрын
Great notes on the current hurdles to making these swipe actions work. Thanks Sean!
@tonyd6853
@tonyd6853 3 жыл бұрын
Haven't these been around for a long time?
@seanallen
@seanallen 3 жыл бұрын
On the iOS platform, yes. However, SwiftUI received a new modifier in iOS 15 that handles this easily.
@vamsi3877
@vamsi3877 3 жыл бұрын
SwiftUI becoming more handy
@Pobe16
@Pobe16 3 жыл бұрын
Can I set one of the buttons to be main one when doing a full swipe?
@ghantasalavarichannel857
@ghantasalavarichannel857 2 жыл бұрын
Hi Sean, There is a problem to show both icon and text on Swipe Actions in SwiftUI for macOS 12. It is not working for me. Can you please provide me some idea.
@dominikgrodl7822
@dominikgrodl7822 3 жыл бұрын
Hi Sean. Great video as always! Just wanted to follow on the fact that the full swipe wasn't available on your simulator- it works in my code, the system grabs the button which is closest to the respective edge (which is even the default behaviour throughout the system, f.e. in the Mail app). I don't know what makes it not work in your code or what makes it work in mine though, just wanted to clarify that.
@seanallen
@seanallen 3 жыл бұрын
Thanks for pointing this out. Good to know!
@军沈-w5t
@军沈-w5t 3 жыл бұрын
Can use swipeAction in Xcode12?
@VitVids
@VitVids 3 жыл бұрын
Is there a way to have those actions without background (and make custom buttons)? E.g. you use List without separators and each row has view with rounded corners and paddings (look at the navigation center). Default swipe actions won’t look good here.
@VladimirWeinsteinPhotography
@VladimirWeinsteinPhotography 3 жыл бұрын
This was great, thanks! Trying to implement a swipeAction to favorite (in this case alternating a bool in my modeldata) in the ForEach but getting an error, since the ForEach is a read-only copy of the array. What would be the best solution for something like that?
@nileshjdarji
@nileshjdarji 3 жыл бұрын
A quick side question. Do SwiftUI have UserDefaults equivalent?
@nileshjdarji
@nileshjdarji 3 жыл бұрын
@Omeir Ahmed Khan Thank you Omeir.
@DaveJacobseniOS
@DaveJacobseniOS 3 жыл бұрын
Good stuff! Thanks for the run through.
@KenjiEmura
@KenjiEmura 2 жыл бұрын
How can I also show the swipeActions options when the cell is tapped?
@shaxzodziyadullayev9115
@shaxzodziyadullayev9115 Жыл бұрын
hello, did you find solution to your question?
@KenjiEmura
@KenjiEmura Жыл бұрын
@@shaxzodziyadullayev9115Hi, unfortunately I don’t remember what I ended up doing
@VasaMusic438
@VasaMusic438 3 жыл бұрын
with all these curly braces is will be very easy to get lost
SwiftUI Gradient Buttons | Linear, Radial & Angular Gradients
9:55
Муж внезапно вернулся домой @Oscar_elteacher
00:43
История одного вокалиста
Рет қаралды 7 МЛН
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
HARD_MMA
Рет қаралды 2,7 МЛН
SwiftUI List with Custom Cell & Passing Data
36:27
Sean Allen
Рет қаралды 118 М.
How to use gestures in SwiftUI - Flashzilla SwiftUI Tutorial 1/13
16:13
SwiftData Basics in 15 minutes
15:18
CodeWithChris
Рет қаралды 51 М.
iOS 15 Swipe Actions, Enumerated List and more
21:57
Stewart Lynch
Рет қаралды 1,3 М.
How to Get User Location on a Map - Swift
26:11
Sean Allen
Рет қаралды 65 М.
SwiftUI List Explained | All Modifiers & Styles
11:49
Flo writes Code
Рет қаралды 2,7 М.
I Made an iOS App in MINUTES with This AI Tool!
13:20
Creator Magic
Рет қаралды 294 М.
ИГРОВОЙ ПК от ИЛОНА МАСКА, Распаковка
32:50