I Flutter, más mian leat gníomh áirithe a dhéanamh tar éis sonraithe timeout, is féidir leat an Future.delayed
fheidhm a úsáid chomh maith leis na heochairfhocail async
agus await
. Seo sampla:
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MyHomePage(),
);
}
}
class MyHomePage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Timeout Example'),
),
body: Center(
child: ElevatedButton(
onPressed:() {
performActionWithTimeout();
},
child: Text('Perform Action with Timeout'),
),
),
);
}
Future<void> performActionWithTimeout() async {
print('Action started');
// Simulate a delay of 3 seconds
await Future.delayed(Duration(seconds: 3));
print('Action completed after timeout');
}
}
Sa sampla seo, nuair a bhíonn an cnaipe brúite, performActionWithTimeout
tugtar an fheidhm. Laistigh den fheidhm seo, úsáidimid await Future.delayed(Duration(seconds: 3))
chun moill 3 soicind a thabhairt isteach. Tar éis an mhoill, cuirtear an gníomh i gcrích.
Is féidir leat an performActionWithTimeout
oibríocht atá ag teastáil a chur in ionad na gníomhaíochta laistigh den fheidhm. Is féidir leis an meicníocht seo timeout a bheith cabhrach nuair is mian leat moill a chur ar ghníomh gan bac a chur ar an snáithe Chomhéadain.
Coinnigh i gcuimhne, má tá aon nuashonruithe nó pacáistí nua a bhaineann leis timeout i Flutter ndiaidh an nuashonraithe is déanaí agam, b'fhéidir gur mhaith leat na roghanna sin a iniúchadh freisin.