Telegram RegisterThe public register of Telegram

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
TypeChannel
Username@DXCodeRepo
Created19 May 2025measured — dated from the channel’s first post
First recorded9 August 2026
Last confirmed live13 August 2026
Measurements held2
On Telegramt.me/DXCodeRepo

Growth

806 August 2026 — 80 subscribers9 August 2026 — 80 subscribers6 August 20269 August 2026
2 measurements spanning 3 days. Dots are measurements; the straight line between them is drawn to join them, not to claim we know the path taken in between — snapshots are recorded only when a count changes, so gaps mean “no change observed”, never “interpolated”. The vertical axis spans 79–81 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
9 Aug 2026, 18:4880no change
6 Aug 2026, 21:0080first reading

Engagement

15 posts held, back to 19 May 2025the 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

16 Feb 2026, 18:03 UTC474 viewsread 9 August 2026

در فایل 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

14 Dec 2025, 08:57 UTC272 viewsread 9 August 2026

✅ راه‌حل حرفه‌ای: 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!')), );

4 Dec 2025, 07:46 UTC248 viewsread 9 August 2026

import 'package:flutter/services.dart'; void setSystemBars() { SystemChrome.setSystemUIOverlayStyle( const SystemUiOverlayStyle( statusBarColor: Colors.transparent, // شفاف یا هر رنگ دلخواه statusBarIconBrightness: Brightness.light, // برای آیکون‌های روشن systemNavigationBarColor: Colors.black, // رنگ نوار پایین systemNavigationBarIconBrightness: Brightness.light, ), ); } و در ص

24 Nov 2025, 08:05 UTC212 viewsread 9 August 2026

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 ==

12 Nov 2025, 13:13 UTC233 viewsread 9 August 2026

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'); } } ب

5 Nov 2025, 18:34 UTC213 viewsread 9 August 2026

bool isButtonClicked = false; void onButtonPressed() async { if (isButtonClicked) return; // جلوگیری از دوبار کلیک isButtonClicked = true; // اکشن اصلی مثلاً ارسال درخواست await Future.delayed(const Duration(seconds: 1)); print('Request done!'); isButtonClicked = false; }

2 Nov 2025, 08:00 UTC202 viewsread 9 August 2026

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) {

4 Jun 2025, 08:54 UTC240 viewsread 9 August 2026

@override void initState() { super.initState(); WidgetsBinding.instance.addPostFrameCallback((_) { // این کد بعد از ساخت کامل ویجت اجرا میشه showDialog( context: context, builder: (context) => AlertDialog( title: Text('Hi!'), content: Text('ویجت‌ها لود شدن'), ), ); }); }

27 May 2025, 10:35 UTC289 viewsread 9 August 2026

❌ اشتباه: Column( children: [ myWidgets, // ارور! ], ); ✅ درست: Column( children: [ Text('شروع'), ...myWidgets, // لیست باز می‌شه Text('پایان'), ], ); 🧩 شرطی هم می‌تونی بنویسی: if (showList) ...myWidgets ⚙️ ساخت لیست داینامیک از دیتا: ...names.map((n) => Text(n)).toList()

24 May 2025, 12:54 UTC207 viewsread 9 August 2026

نمونه کد: 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

20 May 2025, 17:43 UTC269 viewsread 9 August 2026

😎 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

20 May 2025, 17:42 UTC159 viewsread 9 August 2026

🔨نمونه کد: 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.