Let's Build A Job Portal With iOS

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
  • sdk-for-apple

    [READ-ONLY] Official Appwrite SDK for Apple Devices 🍎

    In the new dialog that appears, tap the top right search icon and type the GitHub URL for the SDK https://github.com/appwrite/sdk-for-apple and hit Enter. You should see the sdk-for-apple package listed.

  • demo-job-portal-with-apple

    Discontinued A basic demo example for integrating between Appwrite & Apple (=❤️)

    We've built a complete app that interacts with Appwrite's account and database APIs with our SDK for Apple and SwiftUI, which you can find over at our GitHub Repo.

  • WorkOS

    The modern identity platform for B2B SaaS. The APIs are flexible and easy-to-use, supporting authentication, user identity, and complex enterprise features like SSO and SCIM provisioning.

  • playground-for-apple-swiftui

    Simple examples that help you get started with Appwrite + Apple with SwiftUI (=❤️)

    Swift Playground

  • Appwrite

    Build like a team of hundreds_

    import SwiftUI import Kingfisher struct JobItemView: View { let job: Job init(_ job: Job) { self.job = job } var body: some View { ZStack { RoundedRectangle(cornerRadius: 16, style: .continuous) .fill(.blue.opacity(0.2)) VStack (alignment: .leading) { ZStack(alignment: .center) { RoundedRectangle(cornerRadius: 14, style: .continuous) .fill(.gray.opacity(0.5)) KFImage.url(URL(string: job.logo)) .resizable() .scaledToFit() .frame(height: 50) } .frame(width: 86, height: 82) Text(job.title) .font(.largeTitle) .padding(.top, 24) HStack (spacing: 20) { Text(job.company) .fontWeight(.semibold) Text(job.location) .fontWeight(.semibold) } .padding(.bottom, 24) Text(job.description) } .padding(.all, 26) } } } struct JobItemView_Previews: PreviewProvider { static var previews: some View { JobItemView( Job( id: "1", title: "Swift Developer", link: "https://appwrite.io", logo: "https://demo.appwrite.io/v1/storage/files/61667e8e6cb16/preview?project=615d75f94461f", company: "Google", description: "Swift Developer", location: "Tel Aviv" ) ) .preferredColorScheme(.dark) } }

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts