Let's Build A Job Portal With iOS

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

InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. 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.

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. 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.

  4. playground-for-apple-swiftui

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

    Swift Playground

  5. 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

  • Migrate Firebase Users to Appwrite

    2 projects | dev.to | 14 Sep 2022
  • Custom Svelte Store with Appwrite and Caching

    2 projects | dev.to | 28 Jun 2022
  • Appwrite Community Report #3

    2 projects | dev.to | 23 Apr 2022
  • A Self Hosted and Open Source Alternative to Google’s Firebase

    3 projects | /r/raspberry_pi | 24 Mar 2022
  • Appwrite 0.12 - A major milestone for the self hosted Firebase Alternative

    5 projects | /r/selfhosted | 5 Jan 2022

Did you know that Swift is
the 15th most popular programming language
based on number of references?