Showing
1 changed file
with
4 additions
and
4 deletions
@@ -18,7 +18,7 @@ | @@ -18,7 +18,7 @@ | ||
18 | 18 | ||
19 | 19 | ||
20 | - [Get সম্পর্কে](#about-get) | 20 | - [Get সম্পর্কে](#about-get) |
21 | -- [কিভাবে ইনস্টল করতে হবে](#installing) | 21 | +- [ইনস্টল](#installing) |
22 | - [GetX দিয়ে কাউন্টার অ্যাপ তৈরি করুন](#counter-app-with-getx) | 22 | - [GetX দিয়ে কাউন্টার অ্যাপ তৈরি করুন](#counter-app-with-getx) |
23 | - [GetX এর তিনটি স্তম্ভ](#the-three-pillars) | 23 | - [GetX এর তিনটি স্তম্ভ](#the-three-pillars) |
24 | - [স্টেট ব্যবস্থাপনা](#state-management) | 24 | - [স্টেট ব্যবস্থাপনা](#state-management) |
@@ -89,16 +89,16 @@ | @@ -89,16 +89,16 @@ | ||
89 | **In addition, to further increase your productivity, we have the | 89 | **In addition, to further increase your productivity, we have the |
90 | [extension to VSCode](https://marketplace.visualstudio.com/items?itemName=get-snippets.get-snippets) and the [extension to Android Studio/Intellij](https://plugins.jetbrains.com/plugin/14975-getx-snippets)** | 90 | [extension to VSCode](https://marketplace.visualstudio.com/items?itemName=get-snippets.get-snippets) and the [extension to Android Studio/Intellij](https://plugins.jetbrains.com/plugin/14975-getx-snippets)** |
91 | 91 | ||
92 | -# Installing | 92 | +# ইনস্টল |
93 | 93 | ||
94 | -Add Get to your pubspec.yaml file: | 94 | +আপনার pubspec.yaml ফাইলে get যোগ করুন: |
95 | 95 | ||
96 | ```yaml | 96 | ```yaml |
97 | dependencies: | 97 | dependencies: |
98 | get: | 98 | get: |
99 | ``` | 99 | ``` |
100 | 100 | ||
101 | -Import get in files that it will be used: | 101 | +যে ফাইল এ ব্যবহার করবেন সেখানে ইম্পোর্ট করুন: |
102 | 102 | ||
103 | ```dart | 103 | ```dart |
104 | import 'package:get/get.dart'; | 104 | import 'package:get/get.dart'; |
-
Please register or login to post a comment