modal_progress_hud 0.0.3 copy "modal_progress_hud: ^0.0.3" to clipboard
modal_progress_hud: ^0.0.3 copied to clipboard

outdatedDart 1 only

A modal progress hud (progress indicator).

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:modal_progress_hud/modal_progress_hud.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: SettingsPage(),
    );
  }
}

class SettingsPage extends StatefulWidget {
  @override
  _SettingsPageState createState() => _SettingsPageState();
}

class _SettingsPageState extends State<SettingsPage> {
  final GlobalKey<FormState> _loginFormKey = GlobalKey<FormState>();
  // manage state of modal progress HUD widget
  bool _inAsyncCall = false;

  final _LoginData _actualLoginData = _LoginData();
  final _LoginData _validLoginData = _LoginData(
    userName: 'username1',
    password: 'password1',
  );
  bool _isValidUserName = true; // managed by response from server
  bool _isValidPassword = true; // managed by response from server
  bool _isLoggedIn = false; // managed by response from server

  // validate user name
  String _validateUserName(String userName) {
    if (userName.length < 8) {
      return 'Username must be at least 8 characters';
    }

    if (!_isValidUserName) {
      _isValidUserName = true;
      return 'Incorrect user name';
    }

    return null;
  }

  // validate password
  String _validatePassword(String password) {
    print('validating password');

    if (password.length < 8) {
      return 'Password must be at least 8 characters';
    }

    if (!_isValidPassword) {
      _isValidPassword = true;
      return 'Incorrect password';
    }

    return null;
  }

  void _submit() {
    print('submit called...');
    if (_loginFormKey.currentState.validate()) {
      _loginFormKey.currentState.save();

      // dismiss keyboard
      FocusScope.of(context).requestFocus(new FocusNode());

      // start the modal progress HUD
      setState(() {
        _inAsyncCall = true;
      });

      // Simulate a service call
      print('submitting to backend...');
      Future.delayed(Duration(seconds: 1), () {
        print('response from backend');
        setState(() {
          _isLoggedIn = false;
          if (_actualLoginData.userName == _validLoginData.userName) {
            _isValidUserName = true;
          } else
            _isValidUserName = false;
          if (_actualLoginData.password == _validLoginData.password) {
            _isValidPassword = true;
          } else
            _isValidPassword = false;
          if (_isValidUserName && _isValidPassword) _isLoggedIn = true;
          // stop the modal progress HUD
          _inAsyncCall = false;
        });
      });
    }
  }

  Widget _buildWidget() {
    final ThemeData themeData = Theme.of(context);
    final TextTheme textTheme = themeData.textTheme;
    // run the validators on reload
    _loginFormKey.currentState?.validate();
    return Form(
      key: this._loginFormKey,
      child: Column(
        children: [
          Padding(
            padding: const EdgeInsets.fromLTRB(32.0, 4.0, 32.0, 4.0),
            child: TextFormField(
              initialValue: _actualLoginData.userName,
              keyboardType: TextInputType.text,
              decoration: InputDecoration(
                  hintText: 'enter username', labelText: 'User Name'),
              style: TextStyle(fontSize: 20.0, color: textTheme.button.color),
              validator: this._validateUserName,
              onSaved: (String value) {
                _actualLoginData.userName = value;
              },
            ),
          ),
          Padding(
            padding: const EdgeInsets.fromLTRB(32.0, 4.0, 32.0, 32.0),
            child: TextFormField(
              obscureText: true,
              initialValue: _actualLoginData.userName,
              keyboardType: TextInputType.text,
              decoration: InputDecoration(
                  hintText: 'enter password', labelText: 'Password'),
              style: TextStyle(fontSize: 20.0, color: textTheme.button.color),
              validator: this._validatePassword,
              onSaved: (String value) {
                _actualLoginData.password = value;
              },
            ),
          ),
          RaisedButton(
            onPressed: _submit,
            child: Text('Login'),
          ),
          Padding(
            padding: const EdgeInsets.fromLTRB(32.0, 32.0, 32.0, 4.0),
            child: _isLoggedIn
                ? Text(
                    'Login successful!',
                    style: TextStyle(
                      fontSize: 20.0,
                    ),
                  )
                : Text(
                    'Not logged in',
                    style: TextStyle(fontSize: 20.0),
                  ),
          ),
        ],
      ),
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Modal Progess HUD Demo'),
        backgroundColor: Colors.blue,
      ),
      body: ModalProgressHUD(
        child: _buildWidget(),
        inAsyncCall: _inAsyncCall,
        opacity: 0.5,
        valueColor: AlwaysStoppedAnimation<Color>(Colors.blue),
      ),
    );
  }
}

class _LoginData {
  String userName;
  String password;
  _LoginData({this.userName, this.password});
}
483
likes
0
pub points
96%
popularity

Publisher

unverified uploader

A modal progress hud (progress indicator).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on modal_progress_hud