☝️ Настраиваем Makefile в своих Flutter-проектах В каждом нашем проекте есть набор команд, который не меняется от репозитория к репозиторию. Мы их почти никогда не печатаем вручную — ищем в истории терминала или копируем из README. flutter pub get \ && flutter pub run build_runner build --delete-conflicting-outputs \ && flutter format В карточках Лёша, Flutter Team Lead Surf, разобрал, как спрятать эти «вечные» к…

Channel
flutter compose up
@JsonCodable
On this record: Growth · Engagement · What this channel posts · Posts · Citations · Cite this entry
3subscribers
+0 since we began measuring on 7 August 2026
Risers and fallers across the register · movement among entries of Under 1,000.
Register entry
| Telegram ID | -1002114270325 |
|---|---|
| Type | Channel |
| Username | @JsonCodable |
| Description | Канал, где я храню интересные статьи/библиотеки из мира Flutter. Если вам интересно, можете тоже читать |
| Created | Between 1 November 2023 and 31 May 2024— estimated from Telegram’s id allocation, not measured. How this range is calculated. |
| First recorded | 13 August 2026 |
| Last confirmed live | 13 August 2026 |
| Measurements held | 2 |
| On Telegram | t.me/JsonCodable |
Growth
| Measured (UTC) | Subscribers | Change |
|---|---|---|
| 13 Aug 2026, 13:03 | 3 | no change |
| 7 Aug 2026, 13:05 | 3 | first reading |
Engagement
10 posts held, back to 23 April 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 10 posts for this entry, the most recent from 1 August 2025. An engagement rate over an empty window would be a number about nothing.
What this channel posts
- Photos
- 64
- Videos
- 5
- Links
- 31
Lifetime counters from Telegram’s own channel header, read 13 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.
- Video runtime
- 1m 05s
- Average length
- 33s
Measured directly from 2 videos with a duration reading, out of the posts we hold for this channel — not this channel’s whole posting history, only the sample this register has actually read. An exact reading to the second, taken from the post itself rather than from Telegram’s own rounded chrome, so it carries no ≈ mark.
Recent posts
Сделал пакетик, позволяет генерить локализацию с Google Sheets, есть разные полезные настройки https://pub.dev/packages/sheety_localization dart pub global activate sheety_localization dart pub global run sheety_localization:generate \ --credentials=credentials.json \ --sheet=<YOUR_SPREADSHEET_ID> #chicken
🤯 По нераскрытой причине команда Flutter задеприкейтила библиотеку flutter_markdown Вероятно просто не хватает рук на поддержку либы Я использовал эту тулзу для редеринга Markdown в своих проектах и естественно начал искать чем заменить 1️⃣ flutter_markdown_plus Кто не так давно в нашей Flutter тусовочке, вы возможно ещё не знаете семантику этой приписки plus. Короче если популярная библиотека больше не поддержив…
Наткнулся на полезняшку для тех, кто не любит тащить весь репозиторий ради пары файлов — GitZip Расширение для браузера, которое позволяет скачивать отдельные файлы или папки из любого GitHub-репо Доступно в Chrome, Edge и Firefox ➡️ @FrontendPortal | #resourse
Привет! Это Роза, Flutter Dev Friflex! 👋 Когда я только начинала работать, почти не пользовалась горячими клавишами. У меня была мышка. И этого вроде бы хватало, но со временем мне захотелось ускорить свою работу, поэтому я целенаправленно начала внедрять шорткаты в свою разработку. И это было лучшим решением! Хочу поделиться и с вами самыми полезными из них — вдруг пригодятся. 🔴Начнем с навигации и поиска: ⌘ + P —…
Hola, Amigos! На связи Павел Гершевич, Mobile Team Lead в Amiga. Сегодня мы продолжим говорить про Git Hooks, а именно рассмотрим, как их можно делать на Dart. В этом нам поможет библиотека git_hooks. Ее нужно активировать глобально. dart pub global activate git_hooks Далее создать место, где будут храниться наши хуки внутри нашего проекта. git_hooks create bin/git_hooks.dart Потом необходимо создать файл bin/ma…
Hola, Amigos! На связи Павел Гершевич, Mobile Team Lead в Amiga. Сегодня обсудим максимально полезный инструмент для командной работы — Git Hooks. При совместной разработке кода часто возникают различия в стилях: кто-то забывает переносы строк, кто-то — запятые. Конечно, можно поручить форматирование CI/CD, но это займет больше времени. Git Hooks выполняются на рабочей станции разработчика и легко настраиваются. Дл…
В копилку лайфхаков по VSCode: теперь в терминале можно включить автодополнение а-ля IntelliSense Как включить: • Открываешь Settings → ищешь "terminal integrated suggest" • Врубаешь чекбокс Пользуемся 😇 ➡️ @FrontendPortal | #vscode
И снова любимый Flutter и перехват трафика/Unpinning Как же все-таки перехватить трафик флаттер-приложений?) Какие способы помимо reFlutter существуют?)) Очень крутая статья как раз про это. Автор описывает строение Flutter-приложений, как использовать reFlutter и что он делает под капотом. И основная часть про то, как он пытался повторить тоже самое, но при помощи Frida. Очень много отсылок к разным крутым стать…
🐦 Как приручить колбэки в Dart. Мы все стремимся к лаконичному и понятному асинхронному коду с Future. Но иногда реальность вносит свои коррективы — приходится работать с библиотеками и плагинами, у которых только callback-based API. Ситуацию можно взять в свои руки и преобразовать неудобные вызовы method((result) { … }) в привычный dart final result = await method(). Дима, Flutter Team Lead в Surf, показал, как э…
Showing the 10 most recent of 10 posts we hold for @JsonCodable. 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.
Forward network
Republishes
Channels on the register whose posts this channel has forwarded.
Built only from forwarded posts we have actually read, on both sides. Coverage is early and deliberately incomplete: a missing link means we have not read the post that would prove it, never that the relationship does not exist. Counts are distinct forwarded posts observed, so they only ever go up as we read more.
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 13 August 2026 — this entry's latest reading, not the date you are reading this.
“flutter compose up” (@JsonCodable), 3 subscribers as measured 13 August 2026. Telegram Register, tgregister.com/channel/JsonCodable.
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.