RawDialogRoute
Flutter కస్టమ్ డైలాగ్లు లేదా పాప్అప్లను ప్రదర్శించడానికి ఒక మార్గాన్ని అందించే, ముడి డైలాగ్ మార్గాన్ని సూచించే తరగతి. డైలాగ్ రూట్లను రూపొందించడానికి మరియు నిర్వహించడానికి ఫ్రేమ్వర్క్ ద్వారా ఈ తరగతి సాధారణంగా అంతర్గతంగా ఉపయోగించబడుతుంది.
RawDialogRoute
కస్టమ్ డైలాగ్ని ప్రదర్శించడానికి మీరు ఎలా ఉపయోగించవచ్చో ఇక్కడ ఒక ఉదాహరణ ఉంది:
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('RawDialogRoute Example'),
),
body: Center(
child: ElevatedButton(
onPressed:() {
showDialog(
context: context,
builder:(BuildContext context) {
return RawDialogRoute(
context: context,
barrierDismissible: true,
builder:(BuildContext context) {
return AlertDialog(
title: Text('Custom Dialog'),
content: Text('This is a custom dialog using RawDialogRoute.'),
actions: [
TextButton(
onPressed:() {
Navigator.pop(context);
},
child: Text('Close'),
),
],
);
},
);
},
);
},
child: Text('Open Dialog'),
),
),
);
}
}
ఈ ఉదాహరణలో, బటన్ నొక్కినప్పుడు, బిల్డర్గా showDialog
ఉపయోగించి అనుకూల డైలాగ్ను ప్రదర్శించడానికి ఫంక్షన్ ఉపయోగించబడుతుంది. RawDialogRoute
లోపల builder
, మీరు డైలాగ్ కోసం మీ అనుకూల కంటెంట్ను అందించవచ్చు.
దయచేసి ఇది తక్కువ-స్థాయి తరగతిగా పరిగణించబడుతుందని గమనించండి మరియు చాలా సందర్భాలలో డైలాగ్లను రూపొందించడానికి RawDialogRoute
అంతర్నిర్మిత AlertDialog
లేదా తరగతులను ఉపయోగించడం మీకు మరింత సౌకర్యవంతంగా ఉండవచ్చు. SimpleDialog