در فایل build.gradle پروژه، بخش allprojects را به این شکل تغییر دهید: نسخه Kotlin DSL allprojects { repositories { maven { url = uri("https://maven.myket.ir") } maven { url = uri("https://maven.aliyun.com/repository/public") } google() mavenCentral() } } نسخه Groovy allprojects { repositories { // ۱. میرور داخلی مایکت (بسیار سریع) maven { url "https://m…

Channel
DXCode - Code Repository
@DXCodeRepo
On this record: Growth · Engagement · What this channel posts · Posts · Citations · Cite this entry
80subscribers
+0 since we began measuring on 6 August 2026
Risers and fallers across the register · movement among entries of Under 1,000.
Register entry
| Telegram ID | -1002558299503 |
|---|---|
| Type | Channel |
| Username | @DXCodeRepo |
| Created | 19 May 2025 — measured — dated from the channel’s first post |
| First recorded | 9 August 2026 |
| Last confirmed live | 13 August 2026 |
| Measurements held | 2 |
| On Telegram | t.me/DXCodeRepo |
Growth
| Measured (UTC) | Subscribers | Change |
|---|---|---|
| 9 Aug 2026, 18:48 | 80 | no change |
| 6 Aug 2026, 21:00 | 80 | first reading |
Engagement
15 posts held, back to 19 May 2025 — the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 1 pageof Telegram’s post history, 20 posts per page.
Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 15 posts for this entry, the most recent from 16 February 2026. An engagement rate over an empty window would be a number about nothing.
What this channel posts
- Links
- 1
Lifetime counters from Telegram’s own channel header, read 9 August 2026 — not the date at the top of this page, which is when the subscriber count was last read. Below Telegram’s rounding threshold, so these counts are exact.
Recent posts
✅ راهحل حرفهای: Global NavigatorKey 🔧 تنظیم اولیه در MaterialApp: final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>(); MaterialApp( navigatorKey: navigatorKey, home: const HomePage(), ); 🪄 استفاده از context در هرجای اپ: final context = navigatorKey.currentContext!; ScaffoldMessenger.of(context).showSnackBar( const SnackBar(content: Text('Hello from anywhere!')), );
import 'package:flutter/services.dart'; void setSystemBars() { SystemChrome.setSystemUIOverlayStyle( const SystemUiOverlayStyle( statusBarColor: Colors.transparent, // شفاف یا هر رنگ دلخواه statusBarIconBrightness: Brightness.light, // برای آیکونهای روشن systemNavigationBarColor: Colors.black, // رنگ نوار پایین systemNavigationBarIconBrightness: Brightness.light, ), ); } و در ص…
class ScrollFabExample extends StatefulWidget { @override _ScrollFabExampleState createState() => _ScrollFabExampleState(); } class _ScrollFabExampleState extends State<ScrollFabExample> { final ScrollController _controller = ScrollController(); bool _showFab = true; @override void initState() { super.initState(); _controller.addListener(() { if (_controller.position.userScrollDirection ==…
import 'package:connectivity_plus/connectivity_plus.dart'; Future<void> checkConnection() async { final connectivityResult = await Connectivity().checkConnectivity(); if (connectivityResult == ConnectivityResult.mobile) { print('Connected via Mobile Data'); } else if (connectivityResult == ConnectivityResult.wifi) { print('Connected via WiFi'); } else { print('No Internet Connection'); } } ب…
bool isButtonClicked = false; void onButtonPressed() async { if (isButtonClicked) return; // جلوگیری از دوبار کلیک isButtonClicked = true; // اکشن اصلی مثلاً ارسال درخواست await Future.delayed(const Duration(seconds: 1)); print('Request done!'); isButtonClicked = false; }
class UsersPage extends StatefulWidget { const UsersPage({Key? key}) : super(key: key); @override State<UsersPage> createState() => _UsersPageState(); } class _UsersPageState extends State<UsersPage> { late Future<List<User>> _usersFuture; @override void initState() { super.initState(); _usersFuture = fetchUsers(); // فقط یک بار اجرا میشه } @override Widget build(BuildContext context) { …
@override void initState() { super.initState(); WidgetsBinding.instance.addPostFrameCallback((_) { // این کد بعد از ساخت کامل ویجت اجرا میشه showDialog( context: context, builder: (context) => AlertDialog( title: Text('Hi!'), content: Text('ویجتها لود شدن'), ), ); }); }
❌ اشتباه: Column( children: [ myWidgets, // ارور! ], ); ✅ درست: Column( children: [ Text('شروع'), ...myWidgets, // لیست باز میشه Text('پایان'), ], ); 🧩 شرطی هم میتونی بنویسی: if (showList) ...myWidgets ⚙️ ساخت لیست داینامیک از دیتا: ...names.map((n) => Text(n)).toList()
نمونه کد: Future<void> copyToClipboard(BuildContext context, String text) async { // کپی کردن متن به کلیپبورد await Clipboard.setData(ClipboardData(text: text)); bool shouldShowSnackBar = false; // بررسی پلتفرم برای نمایش Snackbar if (Platform.isIOS) { shouldShowSnackBar = true; } else if (Platform.isAndroid) { final deviceInfo = DeviceInfoPlugin(); final androidInfo = await deviceInfo.andr…
😎 Android Studio / IntelliJ: 1. مسیر: Preferences > Editor > Live Templates 2. روی Flutter کلیک کن و + بزن 3. بخش Abbreviation بنویس: مثلاً redlog 4. توی Template Text بذار: debugPrint('\x1B[31m $NAME$ \x1B[0m'); 5.بعد Add variable برای NAME (مثلاً: log) 6.روی Define بزن و Dart رو انتخاب کن 7. ذخیره کن 😎 VS Code (با Snippet): 1. از منو برو به: Preferences > Configure User Snippets 2. فایل dart.json رو باز کن 3…
🔨نمونه کد: debugPrint('\x1B[31m $NAME$ \x1B[0m'); // red debugPrint('\x1B[33m $NAME$ \x1B[0m'); // yellow debugPrint('\x1B[32m $NAME$ \x1B[0m'); // green debugPrint('\x1B[35m $NAME$ \x1B[0m'); // purple debugPrint('\x1B[36m $NAME$ \x1B[0m'); // Turquoise
Showing the 12 most recent of 15 posts we hold for @DXCodeRepo. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked ≈ was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.
Citation-graph rank
Citation-graph rank — 443,137 of 1,480,688entries in the measured graph. A weighted position computed from the forward and mention edges below — republished posts weigh more than named mentions — and recomputed periodically, over the whole graph. Published only as this ordinal position, never as a score: a position is a fact, and a score printed beside one channel’s name would read as a verdict this register does not make. The two counts beneath stay separate for the same reason mentions are never summed with forwards anywhere else on this page — a named-by count costs nothing to manufacture. The top 100 by this measure, or how it is computed.
Mentions
Named by 2 registered channels — every channel on the register whose own posts have named this one, by its current username or any other username it currently holds, merged from two separately captured readings of the same fact so a namer caught by only one of them is not missed and a namer both caught is not counted twice. A username this channel has since dropped is not matched — that handle may belong to someone else now, and crediting today’s namer to yesterday’s owner would misattribute it.
Named by
Channels on the register whose posts name this channel's handle.
A mention is a weaker signal than a forward and is counted separately for that reason — naming a channel is not republishing it, and a handle in a post body is easy to place deliberately. The post counts beside each row below are distinct posts in which the handle appeared, from posts we have read on both sides — the “Named by N registered channels” figure above is a different count, of distinct NAMING CHANNELS rather than posts, and is not the sum of the rows under it.
Cite this entry
A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 9 August 2026 — this entry's latest reading, not the date you are reading this.
“DXCode - Code Repository” (@DXCodeRepo), 80 subscribers as measured 9 August 2026. Telegram Register, tgregister.com/channel/DXCodeRepo.
Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.