Как показать CircularProgressIndicator перед запуском приложения Flutter? - PullRequest
0 голосов
/ 08 мая 2018

В моем демонстрационном приложении мне нужно загрузить файл 2 JSON с сервера. Оба JSON содержат большие данные. В моем приложении Flutter я вызываю json, используя Future + async +, ожидаю, чем призываю создать виджет с помощью runApp. В теле я пытаюсь активировать CircularProgressIndicator. Он показывает appBar и его содержимое, а также пустое белое тело страницы и через 4 или 5 секунд загружает данные в фактическое тело.

У меня вопрос, мне нужно сначала показать CircularProgressIndicator, и после загрузки данных я вызову runApp (). Как мне это сделать?

// MAIN
void main() async {
    _isLoading = true;

  // Get Currency Json
  currencyData = await getCurrencyData();

  // Get Weather Json
  weatherData = await getWeatherData();

   runApp(new MyApp());
}



// Body
body: _isLoading ? 
new Center(child: 
    new CircularProgressIndicator(
        backgroundColor: Colors.greenAccent.shade700,
    )
) :
new Container(
    //… actual UI
)

1 Ответ

0 голосов
/ 08 мая 2018

Вам необходимо поместить данные / или индикатор загрузки в эшафот, показывать эшафот каждый раз, когда у вас есть данные, или нет, содержимое внутри вы можете делать то, что хотите.

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

void main() {
  runApp(
    MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Hello Rectangle',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Hello Rectangle'),
        ),
        body: HelloRectangle(),
      ),
    ),
  );
}

class HelloRectangle extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Center(
      child: Container(
        color: Colors.greenAccent,
        height: 400.0,
        width: 300.0,
        child: Center(
          child: FutureBuilder(
            future: buildText(),
            builder: (BuildContext context, AsyncSnapshot snapshot) {
              if (snapshot.connectionState != ConnectionState.done) {
               return CircularProgressIndicator(backgroundColor: Colors.blue);
              } else {
               return Text(
                  'Hello!',
                  style: TextStyle(fontSize: 40.0),
                  textAlign: TextAlign.center,
                );
              }
            },
          ),
        ),
      ),
    );
  }

  Future buildText() {
    return new Future.delayed(
        const Duration(seconds: 5), () => print('waiting'));
  }
}

`

...