Back to Blog Home
← all posts

Showing an Activity Indicator During Processing in NativeScript Apps

May 22, 2018 — by TJ VanToll

If you’ve built a form in a NativeScript app you’ve probably had the need to show an activity indicator during submission. In this article we’ll look at how to do that by building the example you see in the gif below.

final-workflow-3

NOTE: You can check out this article’s code in NativeScript Playground.

Let’s start by looking at the NativeScript control for making these sort of UIs possible—ActivityIndicator.

Working with the ActivityIndicator component

NativeScript’s ActivityIndicator component is a really simple UI control for showing a spinner. The ActivityIndicator works like any other NativeScript UI control, meaning, you can use NativeScript’s layouts to place the ActivityIndicator anywhere you’d like in your app’s screens.

For example, the following stacks a number of ActivityIndicators on the screen.

<StackLayout>
  <ActivityIndicator color="green" busy="true"></ActivityIndicator>
  <ActivityIndicator color="blue" busy="true"></ActivityIndicator>
  <ActivityIndicator color="red" busy="true"></ActivityIndicator>
  <ActivityIndicator color="orange" busy="true"></ActivityIndicator>
  <ActivityIndicator color="purple" busy="true"></ActivityIndicator>
</StackLayout>

Here’s what that looks like on a device.
spinners

The ability to position the ActivityIndicator is important, as normally you want to show the spinner at a very specific part of the screen.

For the purpose of this article, let’s suppose that you’re building a login the uses the following markup.

<StackLayout class="input-field">
  <TextField class="input" hint="Email"></TextField>
</StackLayout>

<StackLayout class="input-field">
  <TextField class="input" hint="Password"></TextField>
</StackLayout>

<Button class="btn btn-primary" text="Submit"></Button>

With a bit of CSS that markup looks like this on a device.

initial-state

There are a few different places you could choose to show an ActivityIndicator on a form like this, but for this article we’ll center the ActivityIndicator directly in the middle of the login form.

The code below alters the previous example to surround the UI with a parent <GridLayout>, and adds an ActivityIndicator that spans the dimensions of that new parent layout.

<GridLayout rows="auto, auto, auto">
  <StackLayout row="0" class="input-field">
    <TextField class="input" hint="Email"></TextField>
  </StackLayout>

  <StackLayout row="1" class="input-field">
    <TextField class="input" hint="Password"></TextField>
  </StackLayout>

  <Button row="2" class="btn btn-primary" text="Submit"></Button>

  <ActivityIndicator rowSpan="3" busy="true"></ActivityIndicator>
</GridLayout>

With this approach your form fields take up exactly the same dimensions they did before, however, they now have a parent <GridLayout> container that you can use to position the <ActivityIndicator>. The end result looks like this.

spinner-1

Feel free to change the position of your ActivityIndicator depending on the needs of your apps. When you’re ready, let’s look at how to bind to an ActivityIndicator’s busy attribute, and how to disable form controls during submission.

TIP: Need help mastering NativeScript layouts? Try the interactive tutorials on nslayouts.com.

Disabling form controls appropriately

Allowing users to mess with a form during submission is not a good idea. You stand a good chance of confusing your users, and you might even screw up your backend by sending multiple simultaneous requests.

Luckily, NativeScript’s form controls have an easy-to-use isEnabled attribute to make shutting down your form relatively easy.

To start implementing this, you first need to create a variable to track whether a request to your backend is in progress. For example, in an Angular app you might want to use the processing instance variable in the code below. Notice how the variable is set to false by default, and set to true right before you initiate your backend processing.

import { Component } from "@angular/core";

@Component({
  selector: "app-login",
  ...
})
export class LoginComponent {
  processing = false;

  submit() {
    this.processing = true;
    callMyBackendService()
      .then(() => {
        this.processing = false;
        // Handle response
      })
  }
}

The idea behind creating a variable like processing is it gives you a value you can bind each component’s isEnabled attribute to, as well the <ActivityIndicator>’s busy attribute. For example, here’s how you can accomplish that in an Angular app.

<GridLayout rows="auto, auto, auto">
  <StackLayout row="0" class="input-field">
    <TextField [isEnabled]="!processing" class="input" hint="Email"></TextField>
  </StackLayout>

  <StackLayout row="1" class="input-field">
    <TextField [isEnabled]="!processing" class="input" hint="Password"></TextField>
  </StackLayout>

  <Button row="2" [isEnabled]="!processing" class="btn btn-primary" text="Submit"></Button>

  <ActivityIndicator [busy]="processing" rowSpan="3"></ActivityIndicator>
</GridLayout>

With these changes in place your form now looks like this.

final-workflow-1

As a final step, NativeScript provides a :disabled CSS selector for you to style disabled form controls. You’re welcome to customize your apps as much as you’d like, but oftentimes bumping down the opacity is enough to visibly show that a control is disabled.

:disabled {
  opacity: 0.5;
}

With that, your form now adds a little bit of opacity whenever submissions are in progress.

final-workflow-2

And if you add in some login form functionality from a previous article on this blog, you end up with the final state of this example.

final-workflow-3

As a reminder, the full source code for this example is available on NativeScript Playground. If you run into problems using this code, or have any other tips & tricks related to activity indicators you’d like to share, feel free to post them in the comments.