繁体   English   中英

如何从 Flutter 的搜索委托中删除 Splash

[英]How to Remove Splash From Flutter's Search Delegate

我正在制作我想放在 App Store 上的第一个应用程序。 这是一个天气应用程序。 将其命名为 Aer,所以请尽快查看! 但无论如何,我基本上已经完成了。 不过有一件事困扰着我。 每当我搜索一个城市时(每当我在 SearchDelegate 中返回一个小部件或进出它时)都会发生这种奇怪的飞溅。 我的猜测是它与动画有关,但我不知道如何更改它,或者甚至是那样。 下面是我的代码(注意复制粘贴,因为我做得很快)。 我真的很想帮助摆脱这种情况。 我还附上了一个 gif 来更好地展示我在说什么。 谢谢!在此处输入图片说明

place_search.dart
import 'package:aer/services/places.dart';
import 'package:aer/style.dart';
import 'package:flutter/material.dart';

class AddressSearch extends SearchDelegate<Suggestion> {
  AddressSearch(this.sessionToken) {
    apiClient = PlaceApiProvider(sessionToken);
  }

  final sessionToken;
  PlaceApiProvider apiClient;
  Suggestion firstItem;
  List<Suggestion> results;

  @override
  ThemeData appBarTheme(BuildContext context) {
    return ThemeData(
      primaryColor: Color.fromRGBO(45, 45, 42, 1.0),
      primaryIconTheme: IconThemeData(color: Color.fromRGBO(239, 247, 255, 1.0)),
      textTheme: TextTheme(
          title: Style.textStyle(size: 24, color: Color.fromRGBO(239, 247, 255, 1.0))
      ),
      inputDecorationTheme: InputDecorationTheme(
        hintStyle: Style.textStyle(size: 24, color: Color.fromRGBO(239, 247, 255, 1.0)),
      ),
      cursorColor: Color.fromRGBO(239, 247, 255, 1.0),
    );
  }

  @override
  Animation<double> get transitionAnimation => super.transitionAnimation;

  @override
  TextInputType get keyboardType => TextInputType.name;

  @override
  List<Widget> buildActions(BuildContext context) {
    return [
      Padding(
        padding: const EdgeInsets.symmetric(horizontal: 16.0),
        child: IconButton(
          tooltip: 'Clear',
          icon: Icon(Icons.clear),
          onPressed: () {
            query = '';
          },
        ),
      )
    ];
  }

  @override
  Widget buildLeading(BuildContext context) {
    return Padding(
      padding: const EdgeInsets.symmetric(horizontal: 16.0),
      child: IconButton(
        tooltip: 'Back',
        icon: Icon(Icons.arrow_back),
        onPressed: () {
          close(context, null);
        },
      ),
    );
  }

  @override
  Widget buildResults(BuildContext context) {
    if (query != '' && firstItem != null) {
      return Scaffold(
        backgroundColor: Color.fromRGBO(45, 45, 42, 1.0),
        body: ListView.builder(
          itemBuilder: (context, index) => ListTile(
            title:
            Padding(
              padding: const EdgeInsets.only(left: 16.0),
              child: Text((results[index]).description, style: Style.textStyle(size: 16, color: Color.fromRGBO(239, 247, 255, 1.0))),
            ),
            onTap: () {
              close(context, results[index]);
            },
          ),
          itemCount: results.length,
        ),
      );
    } else {
      query = '';
      return Scaffold(
        backgroundColor: Color.fromRGBO(45, 45, 42, 1.0),
        body: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          crossAxisAlignment: CrossAxisAlignment.center,
          children: [
            Padding(
              padding: const EdgeInsets.only(bottom: 128.0),
              child: Center(child: Text("Oops! We couldn't find that one.\nTry again.", textAlign: TextAlign.center, style: Style.textStyle(size: 20, color: Color.fromRGBO(239, 247, 255, 1.0)))),
            )
          ],
        ),
      );
    }
  }

  @override
  Widget buildSuggestions(BuildContext context) {
    return Scaffold(
      backgroundColor: Color.fromRGBO(45, 45, 42, 1.0),
      body: FutureBuilder(
        future: query == ''
            ? null
            : apiClient.fetchSuggestions(
            query, Localizations.localeOf(context).languageCode),
        builder: (context, snapshot) {
          if (snapshot.hasData) {
            if (snapshot.data.length != 0) {
              firstItem = snapshot.data[0] as Suggestion;
              results = snapshot.data;
            } else {
              firstItem = null;
              return Scaffold(
                backgroundColor: Color.fromRGBO(45, 45, 42, 1.0),
                body: Column(
                  mainAxisAlignment: MainAxisAlignment.center,
                  crossAxisAlignment: CrossAxisAlignment.center,
                  children: [
                    Padding(
                      padding: const EdgeInsets.only(bottom: 128.0),
                      child: Center(child: Text("Oops! We couldn't find that one.\nTry again.", textAlign: TextAlign.center, style: Style.textStyle(size: 20, color: Color.fromRGBO(239, 247, 255, 1.0)))),
                    )
                  ],
                ),
              );
            }
          }
          return query == ''
            ? Container(
        )
            : snapshot.hasData
            ? ListView.builder(
          itemBuilder: (context, index) => ListTile(
            title:
            Padding(
              padding: const EdgeInsets.only(left: 16.0),
              child: Text((snapshot.data[index] as Suggestion).description, style: Style.textStyle(size: 16, color: Color.fromRGBO(239, 247, 255, 1.0))),
            ),
            onTap: () {
              close(context, snapshot.data[index] as Suggestion);
            },
          ),
          itemCount: snapshot.data.length,
        )
            : Padding(
              padding: const EdgeInsets.only(left: 32.0, top: 16.0),
              child: Container(child: Text('Loading...', style: Style.textStyle(size: 16, color: Color.fromRGBO(239, 247, 255, 1.0)))),
            );
        }
      ),
    );
  }
}
main.dart (where I call the SearchDelegate)
onTap: () async {
   final sessionToken = Uuid().v4();
   final Suggestion result = await showSearch(
      context: context,
      delegate: AddressSearch(sessionToken),
   );
   if (result != null) {
      BlocProvider.of<WeatherBloc>(context).add(
         WeatherRequestedByCity(city: (result).description));
      RegExp regExp = RegExp('^(.+?),');
      String city = regExp.stringMatch((result).description).toString();
      if (city != 'null') {
         city = city.substring(0, city.length - 1);
      } else {
         city = (result).description;
      }
      setState(() {
         location = city;
         currentPage = 0.0;
      });
   }
}

这里有一个允许动画定制的未决问题 我建议对它进行投票,以帮助提高 Flutter 团队的优先级。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM