Skip to main content

Building a Weather Widget with React and OpenWeatherMap API

· 8 min read
Engineering Team

In this tutorial, we will learn how to build a weather widget using React and the OpenWeatherMap API. A weather widget is a small application or component that displays current weather information for a specific location. We will use React, a popular JavaScript library for building user interfaces, to create our widget, and the OpenWeatherMap API to fetch weather data.

Best Android App Templates

· 6 min read
Full Stack Developer

While we are solely building iOS App Templates, being huge fans of Swift, there's a whole other world out there, when it comes to mobile, and that's the Android side. In this article, we thought about taking a look at the dark side, and see what are the best Android app templates, that you could use for inspiration in your mobile app design and development process.

Angular and Facade Pattern: Simplifying Complex Systems

· 9 min read
Engineering Team

In this tutorial, we will explore the Facade Pattern and its implementation in Angular. The Facade Pattern is a design pattern that simplifies complex systems by providing a unified interface. We will start by understanding the Facade Pattern and its benefits in Angular development. Then, we will provide an overview of the Angular framework and its key concepts. Next, we will dive into the implementation of the Facade Pattern in Angular, including a step-by-step guide and best practices. Finally, we will explore real-world use cases of the Facade Pattern in Angular development.

Angular and Adapter Pattern: Integrating External Libraries

· 9 min read
Engineering Team

This tutorial will guide software developers through the process of integrating external libraries into an Angular application using the Adapter Pattern. The Adapter Pattern is a design pattern that allows incompatible interfaces to work together by acting as a translator between the two. In the context of Angular development, it is crucial for integrating external libraries that may have different APIs and data structures. This tutorial will provide an overview of Angular's dependency injection system, discuss the challenges of integrating external libraries, explain how the Adapter Pattern solves these challenges, and provide best practices for using the Adapter Pattern in Angular. Real-world examples of integrating a charting library and using a third-party authentication service will also be demonstrated.

Best iOS Walkthrough App Designs 2023 | iOS App Templates

· 4 min read
Full Stack Developer

In this blog post, we are featuring the best iOS walkthrough app designs of 2023, which you can use for your own inspiration. We’ve selected a list of gorgeous UI app templates that are meant to inspire the readers. All of them contain modern mobile user interfaces, that are clean and elegant. The criteria we’ve used in order to curate this list of onboarding flow designs were based on a variety of properties, such as UI, UX as well as the expected conversion rate, from a growth perspective. The last one is extremely relevant because it’s the property that measures the effectiveness of the walkthrough flow. The role of the walkthrough onboarding flow is to educate the new users, convince them to create an account and eventually retain them long term into your app.

The Best Features Any Mobile Dating App Should Have in 2023

· 10 min read
Full Stack Developer

Best Features Any Mobile Dating App Should Have

In the past few years, dating applications have created an online revolution, changing the way people get to know and date each other. Online dating is faster and more convenient than traditional dating, and it offers more choices to users. As the number of dating apps is increasing, more entrepreneurs and developers are starting new ventures in the mobile dating space. In this article, we are listing the key features that any mobile dating app should have, to stay ahead of the competition and to provide a thrilling user experience.

Push Notifications with Firebase in Swift 5 - Tutorial

· 10 min read
Full Stack Developer

Every iOS app should leverage push notifications to boost user engagement and retention. Push notifications are a powerful tool, but implementing them in Swift 5 has been historically tricky since you usually needed a server. If you’re just getting started with your app development, chances are you’re already using Firebase as your backend. That’s great news – implementing push notifications with Firebase in Swift 5 is what we cover in this tutorial. In fact, we’ve followed exactly these steps to add push notifications to our Group Chat app.

Push Notification with Firebase in Swift 5

Firebase Swift Tutorial: Login and User Registration on iOS

· 12 min read
Full Stack Developer

Firebase is having great momentum these days. It has gained a lot of traction among mobile developers, who are truly embracing this backend-as-a-service concept. We are using it for all of our iOS app templates. In this Firebase Swift tutorial, you'll learn how to build the login and registration screens that you can find in most of our apps. This is one of the first tutorials on this topic (Firebase Swift tutorials), and we're super excited to make this a wonderful course series. At the end of this Swift Firebase tutorial, we're going to finish these beautiful functional onboarding screens:

swift boilerplate

How to Implement a Map View in SwiftUI

· 5 min read
Full Stack Developer

mapview swiftui

Hello everyone, welcome back to our SwiftUI tutorial series. This time, we are going to learn one of the important features of iOS in particular and mobile in general: MapView. With SwiftUI, using a MapView in your app is not as trivial as it used to be. But it is totally possible to use a Map View in SwiftUI, which is what we tackle in this SwiftUI tutorial.

How to convert HEX colors to UIColor in Swift 5?

· 2 min read
Full Stack Developer

There are many situations when you want to create an UIColor object from a hex color string. In this post, we provide a code sample that will help you convert hex colors to UIColor objects. While generally, you can get away with this by manually converting the hex code to RGB (using an online converter, for example), there are scenarios where your colors are dynamic, so you'll need a utility method that converts the hex code to an RGB color in Swift 5.

How to Implement 'Sign in with Apple' Button in Swift - iOS Tutorial

· 6 min read
Full Stack Developer

In WWDC19, Apple unveiled “Sign In with Apple”, a new way for users to create accounts and sign in into iOS apps. The benefits for using this is that you are getting a two-factor authenticated, secure login system for free. Additionally, it reduces friction in the on boarding flow, which is great in terms of conversion and growth. In this iOS tutorial, we are going to learn how to implement the Sign in with Apple button in Swift.

How to Implement “Sign in with Apple” Button in Swift