Showing
1 changed file
with
8 additions
and
8 deletions
@@ -204,9 +204,9 @@ GetX পাওয়ার সম্পর্কে ভালো ধারণা | @@ -204,9 +204,9 @@ GetX পাওয়ার সম্পর্কে ভালো ধারণা | ||
204 | 204 | ||
205 | ## রুট ব্যবস্থাপনা | 205 | ## রুট ব্যবস্থাপনা |
206 | 206 | ||
207 | -If you are going to use routes/snackbars/dialogs/bottomsheets without context, GetX is excellent for you too, just see it: | 207 | +আপনি যদি context ছাড়াই রুট/স্ন্যাকবার/ডায়ালগ/বটমশীট ব্যবহার করতে চান, GetX আপনার জন্য, এটি দেখুন: |
208 | 208 | ||
209 | -Add "Get" before your MaterialApp, turning it into GetMaterialApp | 209 | +আপনার MaterialApp এর আগে "Get" যোগ করুন, এটিকে GetMaterialApp এ পরিণত করুন |
210 | 210 | ||
211 | ```dart | 211 | ```dart |
212 | GetMaterialApp( // Before: MaterialApp( | 212 | GetMaterialApp( // Before: MaterialApp( |
@@ -214,39 +214,39 @@ GetMaterialApp( // Before: MaterialApp( | @@ -214,39 +214,39 @@ GetMaterialApp( // Before: MaterialApp( | ||
214 | ) | 214 | ) |
215 | ``` | 215 | ``` |
216 | 216 | ||
217 | -Navigate to a new screen: | 217 | +একটি নতুন স্ক্রিনে নেভিগেট করুন: |
218 | 218 | ||
219 | ```dart | 219 | ```dart |
220 | 220 | ||
221 | Get.to(NextScreen()); | 221 | Get.to(NextScreen()); |
222 | ``` | 222 | ``` |
223 | 223 | ||
224 | -Navigate to new screen with name. See more details on named routes [here](./documentation/en_US/route_management.md#navigation-with-named-routes) | 224 | +নাম সহ নতুন স্ক্রিনে নেভিগেট করুন। নামযুক্ত রুট সম্পর্কিত আরও বিস্তারিত বিবরণ দেখুন [এখানে](./documentation/en_US/route_management.md#navigation-with-named-routes) |
225 | 225 | ||
226 | ```dart | 226 | ```dart |
227 | 227 | ||
228 | Get.toNamed('/details'); | 228 | Get.toNamed('/details'); |
229 | ``` | 229 | ``` |
230 | 230 | ||
231 | -To close snackbars, dialogs, bottomsheets, or anything you would normally close with Navigator.pop(context); | 231 | +স্ন্যাকবার, ডায়ালগ, বটমশীট, বা যেকোনো কিছু বন্ধ করতে আপনি Navigator.pop(context) এর পরিবর্তে ব্যবহার করুন: |
232 | 232 | ||
233 | ```dart | 233 | ```dart |
234 | Get.back(); | 234 | Get.back(); |
235 | ``` | 235 | ``` |
236 | 236 | ||
237 | -To go to the next screen and no option to go back to the previous screen (for use in SplashScreens, login screens, etc.) | 237 | +পরবর্তী স্ক্রিনে যাওয়ার পর আগের স্ক্রিনে ফিরে যাওয়া বন্ধ করুন (স্প্ল্যাশস্ক্রিন, লগইন স্ক্রিন ইত্যাদিতে ব্যবহারের জন্য) |
238 | 238 | ||
239 | ```dart | 239 | ```dart |
240 | Get.off(NextScreen()); | 240 | Get.off(NextScreen()); |
241 | ``` | 241 | ``` |
242 | 242 | ||
243 | -To go to the next screen and cancel all previous routes (useful in shopping carts, polls, and tests) | 243 | +পরবর্তী স্ক্রিনে যেতে এবং আগের সমস্ত রুট বাতিল করতে (শপিং কার্ট, পোল ইত্যাদিতে ব্যবহারের জন্য) |
244 | 244 | ||
245 | ```dart | 245 | ```dart |
246 | Get.offAll(NextScreen()); | 246 | Get.offAll(NextScreen()); |
247 | ``` | 247 | ``` |
248 | 248 | ||
249 | -Noticed that you didn't have to use context to do any of these things? That's one of the biggest advantages of using Get route management. With this, you can execute all these methods from within your controller class, without worries. | 249 | +লক্ষ্য করেছেন যে এই জিনিসগুলির কোনটি করার জন্য আপনাকে context ব্যবহার করতে হবে না? এটি Get রুট ম্যানেজমেন্ট ব্যবহার করার সবচেয়ে বড় সুবিধাগুলির মধ্যে একটি। এটির সাহায্যে, আপনি চিন্তা ছাড়াই আপনার controller class এর মধ্যে থেকে এই সমস্ত পদ্ধতিগুলি চালাতে পারেন। |
250 | 250 | ||
251 | ### রুট ব্যবস্থাপনা সম্পর্কে আরো বিস্তারিত | 251 | ### রুট ব্যবস্থাপনা সম্পর্কে আরো বিস্তারিত |
252 | 252 |
-
Please register or login to post a comment