Ashiqur Rahman Alif
Committed by GitHub

Update README-bn.md

@@ -1147,7 +1147,7 @@ if you are using your navigation in your controllers, use `Get.testMode = true` @@ -1147,7 +1147,7 @@ if you are using your navigation in your controllers, use `Get.testMode = true`
1147 1147
1148 1- Rx types: 1148 1- Rx types:
1149 1149
1150 -| Before | After | 1150 +| পূর্বে | এখন |
1151 | ------- | ---------- | 1151 | ------- | ---------- |
1152 | StringX | `RxString` | 1152 | StringX | `RxString` |
1153 | IntX | `RxInt` | 1153 | IntX | `RxInt` |
@@ -1156,10 +1156,10 @@ if you are using your navigation in your controllers, use `Get.testMode = true` @@ -1156,10 +1156,10 @@ if you are using your navigation in your controllers, use `Get.testMode = true`
1156 | NumX | `RxNum` | 1156 | NumX | `RxNum` |
1157 | DoubleX | `RxDouble` | 1157 | DoubleX | `RxDouble` |
1158 1158
1159 -RxController and GetBuilder now have merged, you no longer need to memorize which controller you want to use, just use GetxController, it will work for simple state management and for reactive as well. 1159 +RxController এবং GetBuilder এখন একত্রিত, আপনি কোন নিয়ামক ব্যবহার করতে চান তা আর মুখস্ত করার দরকার নেই, শুধু GetxController ব্যবহার করুন, এটি সাধারণ স্টেট ব্যবস্থাপনা এবং প্রতিক্রিয়াশীল স্টেট ব্যবস্থাপনা এর জন্যও কাজ করবে।
1160 1160
1161 2- NamedRoutes 1161 2- NamedRoutes
1162 -Before: 1162 +আগে:
1163 1163
1164 ```dart 1164 ```dart
1165 GetMaterialApp( 1165 GetMaterialApp(
@@ -1169,7 +1169,7 @@ GetMaterialApp( @@ -1169,7 +1169,7 @@ GetMaterialApp(
1169 ) 1169 )
1170 ``` 1170 ```
1171 1171
1172 -Now: 1172 +এখন:
1173 1173
1174 ```dart 1174 ```dart
1175 GetMaterialApp( 1175 GetMaterialApp(
@@ -1179,9 +1179,8 @@ GetMaterialApp( @@ -1179,9 +1179,8 @@ GetMaterialApp(
1179 ) 1179 )
1180 ``` 1180 ```
1181 1181
1182 -Why this change?  
1183 -Often, it may be necessary to decide which page will be displayed from a parameter, or a login token, the previous approach was inflexible, as it did not allow this.  
1184 -Inserting the page into a function has significantly reduced the RAM consumption, since the routes will not be allocated in memory since the app was started, and it also allowed to do this type of approach: 1182 +কেন এই পরিবর্তন? প্রায়শই, কোন পৃষ্ঠাটি প্যারামিটার বা লগইন টোকেন থেকে প্রদর্শিত হবে তা নির্ধারণ করার প্রয়োজন হতে পারে, পূর্ববর্তী পদ্ধতিটি অনমনীয় ছিল, কারণ এটি সেই অনুমতি দিতো না।
  1183 +এটি ফাংশনে পৃষ্ঠাটি ইনসার্ট করার জন্য উল্লেখযোগ্যভাবে RAM খরচ হ্রাস করেছে, যেহেতু অ্যাপটি শুরু হওয়ার পর থেকে রুটগুলি মেমরিতে বরাদ্দ করা হবে না, এটি এই ধরণের পদ্ধতিরও অনুমতি দেয়:
1185 1184
1186 ```dart 1185 ```dart
1187 1186