मध्ये Flutter, जर तुम्हाला निर्दिष्ट केलेल्या नंतर एखादी विशिष्ट क्रिया करायची असेल timeout, तर तुम्ही आणि कीवर्डसह Future.delayed
फंक्शन वापरू शकता. येथे एक उदाहरण आहे: async
await
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');
}
}
या उदाहरणात, बटण दाबल्यावर performActionWithTimeout
फंक्शन कॉल केले जाते. या फंक्शनमध्ये, आम्ही await Future.delayed(Duration(seconds: 3))
3 सेकंदांचा विलंब सादर करण्यासाठी वापरतो. विलंबानंतर, कारवाई पूर्ण होते.
तुम्ही फंक्शनमधील क्रिया performActionWithTimeout
तुमच्या इच्छित ऑपरेशनने बदलू शकता. timeout जेव्हा तुम्हाला UI थ्रेड अवरोधित न करता एखाद्या कृतीला विलंब करायचा असेल तेव्हा ही यंत्रणा उपयुक्त ठरू शकते.
timeout लक्षात ठेवा की माझ्या शेवटच्या अपडेटनंतर संबंधित कोणतीही अद्यतने किंवा नवीन पॅकेजेस असल्यास Flutter, आपण ते पर्याय देखील एक्सप्लोर करू इच्छित असाल.