How to Purchase ChatGPT4
0:40
3 ай бұрын
Athan App Design İn Figma
8:47
3 ай бұрын
Quran App UI In SwiftUI Tutorial
6:05
Quran App Figma Design
9:24
5 ай бұрын
SignUp Design In SwiftUI Tutorial
6:09
Пікірлер
@alexamachuca2972
@alexamachuca2972 13 күн бұрын
how can i change the background color? (not white)
@khalidkhan5308
@khalidkhan5308 22 күн бұрын
preview could be better
@frankyjunior6005
@frankyjunior6005 25 күн бұрын
How to make stopwatch still alive event the app was killed or close like default clock app
@121husnain
@121husnain 28 күн бұрын
Hi Ayhan, Can i able to get this project? I am also working on the same layout and need to look into it if that is okay for you?
@farahamin9208
@farahamin9208 Ай бұрын
can you please send the link of it if i want to clone app with minor changes
@ufhs
@ufhs Ай бұрын
Selam, I made somthing similar, actually the same as your code. I'm havign problems in persisting the prayer times. When the location services are turned off, it doesn't display anything (as we know). But I want it to still display the prayer times and The current city. Is there a way you can help? Maybe we can save the user's location coordinates within the app to calculate the times. This would help a lot, Thanks!
@bilalmarifet
@bilalmarifet Ай бұрын
calmissin
@user-rw2it4vm2y
@user-rw2it4vm2y 2 ай бұрын
Can i get the source code , please ? sent you email already 🙏
@SmashCoder12
@SmashCoder12 2 ай бұрын
From where you have taken Quran slide
@zaibi3411
@zaibi3411 2 ай бұрын
Your video so stupid, it's too fast and hard to follow your code. Dump ass
@TheIsaPerezShow
@TheIsaPerezShow 2 ай бұрын
Please don’t stop making these videos!! ⭐️
@flamesdestroy5935
@flamesdestroy5935 2 ай бұрын
سبحان الله و بحمده سبحان الله العظيم لا اله الا الله استغفر الله و اتوب اليه الهم صل وسلم و بارك على نبينا محمد
@user-xn3en3uf6d
@user-xn3en3uf6d 2 ай бұрын
this is just Zoom there is no Pan
@gajendrasinhchauhan9830
@gajendrasinhchauhan9830 2 ай бұрын
Good job 👌
@ayh.co.
@ayh.co. 2 ай бұрын
Thank You
@PPlass
@PPlass 2 ай бұрын
Hi, thanks a lot. I can't find the -> audioPlayer.loadAudio(from: url, title: audio.SurahName, artist: "Sleep Sound", image: audio.image) -Fumction in your code. Can you provide the missing part? PP
@ayh.co.
@ayh.co. 2 ай бұрын
Hi, you're welcome. I think you want the code for this part. If I misunderstood, correct me. guard let url = URL(string: audio.fileName) else { return } audioPlayer.loadAudio(from: url, title: audio.SurahName, artist: "Sleep Sound", image: audio.image) audioPlayer.setupRemoteTransportControls()
@curmynation
@curmynation 2 ай бұрын
do you have the source code?
@ayh.co.
@ayh.co. 2 ай бұрын
Hi, yes, I still have the code. You can find it on my Patreon account. Thank you!" www.patreon.com/posts/real-social-app-104779273?Link&
@curmynation
@curmynation 2 ай бұрын
Thank you, I’ll wait for it!
@ayh.co.
@ayh.co. 2 ай бұрын
You're welcome, I have Added Patreon Codes www.patreon.com/posts/real-social-app-104779273?Link&
@krizalidtr
@krizalidtr 2 ай бұрын
Hocam Patreon'dan destek amaçlı kodu indirdim. 2 Telefonda da deneme amaçlı kullandım. Yatsı 'dan sonra kalan süre sıfırlanıyor ve çalışmıyor. Buraya yazdığım zaman ilginç bir şekilde yorumlar silindi. Yorumun silinme Sebebini de anlamadım. Patroen linkinede ne olur ne olmaz açıklamaya yazdım. Sizlerinde bilgisi olsun
@ayh.co.
@ayh.co. 2 ай бұрын
Desteğiniz için teşekkür ederim. Evet, yatsıdan sonra sayılar sıfırlanıyor, yani bir yanlışlık yok. Sorun benden kaynaklanmıyor, aldığım API bu şekilde çalışıyor. Sabah namazına yaklaştıkça sayılar tekrar doğru vakti gösteriyor.
@aethondaemon8564
@aethondaemon8564 2 ай бұрын
Thanks for this, but you skipped StoreIView. Can you please show how or send github link?
@dlatechsolutions
@dlatechsolutions 3 ай бұрын
hi, where is call the setupControlRemote() function
@ayh.co.
@ayh.co. 2 ай бұрын
3:23 I Show It After A Minute ☺️
@FFKILLER-wm3wj
@FFKILLER-wm3wj 3 ай бұрын
türkçesi me zaman gelir hocam
@ayh.co.
@ayh.co. 2 ай бұрын
Turkçe Altyazı Ekledim Videoyaya Oradan Bakabilirsiniz, Teşekkürler.
@luxlux-by5en
@luxlux-by5en 3 ай бұрын
Do you know how to add more videos to the list?
@ayh.co.
@ayh.co. 3 ай бұрын
Yes, it's possible to add multiple videos in SwiftUI, but the way you add them can significantly impact the overall performance and size of your app. Embedding videos directly as files will substantially increase your app's size because the size of each video file adds to the total size of the app. This can slow down the download and update processes and consume significant storage space on your users' devices, especially if you're adding a large number of videos. Instead, you can host your videos on a web server or video hosting services and use only the video links in your app. This method keeps the download size of your app minimal, and videos are streamed when users decide to watch them. Here are the steps to use this method: Choose a Video Hosting Service and Upload Your Videos: Services like KZfaq, Vimeo, or AWS S3 are great options for hosting your videos. Upload your videos to these platforms and obtain a URL for each video. Play Videos in Your SwiftUI App:** Using the `AVKit` library, you can stream videos directly from the URLs. In SwiftUI, you can use the `VideoPlayer` component with `AVPlayer` to initiate video streaming from the URL. import AVKit struct VideoPlayerView: View { var body: some View { VideoPlayer(player: AVPlayer(url: URL(string: "video-url.com/video.mp4")!)) .frame(height: 300) } } This approach enhances the flexibility of your app and improves user experience, as users only download and watch the content they are interested in. Moreover, if you need to update your video content, you can do so directly on the server without needing to update your app.
@pulsivewashere
@pulsivewashere 3 ай бұрын
cool
@ayh.co.
@ayh.co. 3 ай бұрын
Thank You ☺️
@abeddawood897
@abeddawood897 3 ай бұрын
Very clean design, Good job 👏🏽
@ayh.co.
@ayh.co. 3 ай бұрын
Thank You So Much ☺️
@abeddawood897
@abeddawood897 3 ай бұрын
Can i please get those assets so i can follow along
@ayh.co.
@ayh.co. 3 ай бұрын
So You Want My Pictures, Right?
@yayahc
@yayahc 3 ай бұрын
Keep go
@ayh.co.
@ayh.co. 3 ай бұрын
Thank You ☺️
@designckinet
@designckinet 3 ай бұрын
Nice job 👍
@ayh.co.
@ayh.co. 3 ай бұрын
Thank You
@caseyu3087
@caseyu3087 3 ай бұрын
😄 P r o m o s m
@yayahc
@yayahc 3 ай бұрын
Hope you'll get the audience you deserve. I'm not a swift dev but like what you do. Keep going on.
@ayh.co.
@ayh.co. 3 ай бұрын
Thank You So Much ☺️
@arozendojr
@arozendojr 3 ай бұрын
Can you show how to create a project with swiftui and hot reload enabled, I have a lot of difficulty at this point
@ayh.co.
@ayh.co. 3 ай бұрын
I don't understand. What should I prepare a video about? Can you explain it to me a little more?
@__-ur1nd
@__-ur1nd 3 ай бұрын
Well done. I came from Instagram after watching your story about the video. I will watch the video and learn more. Thank you.
@ayh.co.
@ayh.co. 3 ай бұрын
Nice, Then If You Have a Question, etc, You Can Ask. Thanks
@RussChannel13
@RussChannel13 3 ай бұрын
Hi Ayhan, do you make all designs in Figa before development?
@ayh.co.
@ayh.co. 3 ай бұрын
Hi 👋🏻 Sometimes I Do That, First I Design in Figma, Then I Do Coding, But Not Always. thank you for your comment ☺️
@mkhasson97
@mkhasson97 3 ай бұрын
The recording seems to be freezed!!
@ayh.co.
@ayh.co. 3 ай бұрын
There Was A Mistake
@souleymanesagna3159
@souleymanesagna3159 3 ай бұрын
Good luck !
@ayh.co.
@ayh.co. 3 ай бұрын
Thank You ☺️
@__-ur1nd
@__-ur1nd 3 ай бұрын
Thank you for this creativity, and I wish you success and excellence I hope to become like you in the future🙂
@ayh.co.
@ayh.co. 3 ай бұрын
You're Welcome, Thank You
@__-ur1nd
@__-ur1nd 3 ай бұрын
Thank you for this creativity, and I wish you success and excellence
@ayh.co.
@ayh.co. 3 ай бұрын
You're Welcome, Thank You
@__-ur1nd
@__-ur1nd 3 ай бұрын
شكرا لك على هاذا المجهود كنت ابحث عن هاذا الفديوا من مده ووجدته
@ayh.co.
@ayh.co. 3 ай бұрын
Thank you ☺️
@MouseOffice
@MouseOffice 4 ай бұрын
I have error AddInstanceForFactory: No factory registered for id <CFUUID 0x600000258d00> F8BB1C28-BAE8-11D6-9C31-00039315CD46 Can you help me?
@ayh.co.
@ayh.co. 3 ай бұрын
Of Course, I Will Help, Can You Explain Me More, Please
@mkhasson97
@mkhasson97 4 ай бұрын
Thank you!
@ayh.co.
@ayh.co. 4 ай бұрын
You’re welcome ☺️
@ayh.co.
@ayh.co. 3 ай бұрын
Hi, During the live broadcast the other day, you requested a video. Since the comments were lost, I forgot what it was about. Could you please provide me with the details?
@RussChannel13
@RussChannel13 4 ай бұрын
Hey Ayhan! Thank you for the great video! Did you generate Assets images in ChatGPT ?
@ayh.co.
@ayh.co. 4 ай бұрын
Hi 👋🏻 The Pictures I Used In The Video Are Not GhatGPT, But You Can Do It With GhatGPT4 ☺️
@L1LMORTY
@L1LMORTY 4 ай бұрын
Assalamu alaikum, I’m from Dagestan, we’re great, it’s usually difficult for girls to code. I wanted to ask what courses or books you can use to develop in this direction. I'm still checking react, react native, I think that web applications are more flexible and are developing, catching up with the application code.
@ayh.co.
@ayh.co. 4 ай бұрын
Alaykum Salam, You can learn a lot on KZfaq; there are videos on all kinds of coding topics. Personally, I learn more from KZfaq videos.
@user-gk2qz7cv5c
@user-gk2qz7cv5c 4 ай бұрын
Maybe use Array to display the text is a better way, appending String takes up too much CPU
@ayh.co.
@ayh.co. 4 ай бұрын
It is true. Thank You For Your Comment 🤍
@adamkenton2585
@adamkenton2585 4 ай бұрын
Going way too fast, nothing is explained
@ayh.co.
@ayh.co. 4 ай бұрын
I'm sorry about that, I'll pay attention to it in the next video. Thank you for letting me know ☺
@FabricioMTL
@FabricioMTL 4 ай бұрын
God bless you bro
@ayh.co.
@ayh.co. 4 ай бұрын
Allahumma Amen. Allah bless you. Thank you 🤍
@afrcvn
@afrcvn 4 ай бұрын
Where do you find the verse texts? please
@ayh.co.
@ayh.co. 4 ай бұрын
Quran.com You know how to Copy verses. If There Are Too Many Problems, I Can Help. :) Quran.com : previous.quran.com/
@ayh.co.
@ayh.co. 4 ай бұрын
Hi Guys 👋🏻 If You Have Any Questions, If There Are Places You Don't Understand, They Will Be Answered As Soon As Possible In the Summer
@vivekrjk2614
@vivekrjk2614 5 ай бұрын
I need to handle swiftUI pages button's actions like click get lables etc from another normal swift class. I can handle such action using Viewcontroller but if page is designed with SwiftUI, i could not able to find anything please help
@ayh.co.
@ayh.co. 5 ай бұрын
Hello, If you want to manage button actions of SwiftUI pages from other normal Swift classes, there are several ways to accomplish this. Here are some suggestions that might help you: Using the Combine Framework: The Combine framework allows you to manage data flow between SwiftUI and other Swift classes. You can use the ObservableObject protocol to observe data changes and respond to them. Using EnvironmentObject: EnvironmentObject is an object shared by many views. This allows you to use a data model throughout your application and communicate between SwiftUI views. Using Binding and State: Binding and State are another way to transfer data between views. In particular, a change in one view can trigger a change in another view. Interacting with UIKit: By transitioning between SwiftUI and UIKit, you can integrate UIKit components into your SwiftUI application and interact with UIKit classes. This can be done using the Coordinator pattern. Any of these suggestions may help you achieve your goal. If you have a more specific issue, I'd be happy to assist further. I hope this information is helpful to you. Best regards,
@hamzaaljabr5563
@hamzaaljabr5563 5 ай бұрын
Thank you so much its very nice. I have a question: is this design ready to use in XCode or its just a design to make with SwiftUI. ❤ I wish i can make Quran App from scratch.
@ayh.co.
@ayh.co. 5 ай бұрын
I Just Prepared This As a Design, But Maybe it may sound Like How to Make a Quran Application From Scratch, but I'm not sure about your comment, thank you very much
@Decatilinae
@Decatilinae 5 ай бұрын
Really love the design of this app... Even if I don't understand Arabic or follow the Muslim religion, I love this app's minimal and straightforward design. Well done, bro!
@ayh.co.
@ayh.co. 5 ай бұрын
Thanks I Like It Very Much Too Thank You Very Much For Your Comment ☺️
@user-xy5gd2bt4n
@user-xy5gd2bt4n 5 ай бұрын
Help me out bro how were you able to get the app dependencies you used I got confused I need your help
@user-xy5gd2bt4n
@user-xy5gd2bt4n 5 ай бұрын
Don’t ignore me bro I really need your assistance I’m trying to learn here please. I tried emailing you several times but you never respond
@ayh.co.
@ayh.co. 5 ай бұрын
Sorry I Didn't See your Email. Can you explain to me Exactly What Problem you have?@@user-xy5gd2bt4n
@user-xy5gd2bt4n
@user-xy5gd2bt4n 5 ай бұрын
@@ayh.co. thanks for the reply I really appreciate it. I’ve been following up on your videos, really great work. This particular video I commented on was what I most recently worked on. I saw how you worked your way through the firebase dependencies but I couldn’t do the same could it be as a result of my Xcode version? I use Xcode 12.1
@ayh.co.
@ayh.co. 3 ай бұрын
I'm Really Sorry I Saw Your Message Now, I'm Sorry, The Problem May Be The Version, But I Need To Make Sure Exactly What You're Getting On The Line, Can You Tell Me More
@laurentbennis
@laurentbennis 5 ай бұрын
The last planet in the onBoarding Preview is Neptune, which is known for its distinct blue color. :)
@ayh.co.
@ayh.co. 5 ай бұрын
Thanks For Your Comment, You're Right, It Was Wrong