惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
罗磊的独立博客
腾讯CDC
云风的 BLOG
云风的 BLOG
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 三生石上(FineUI控件)
宝玉的分享
宝玉的分享
U
Unit 42
I
InfoQ
D
DataBreaches.Net
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
美团技术团队
IT之家
IT之家
Stack Overflow Blog
Stack Overflow Blog
F
Fortinet All Blogs
GbyAI
GbyAI
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Supabase Realtime Flutter — Complete Guide to Real-Time S...
kanta13jp1 · 2026-04-29 · via DEV Community

kanta13jp1

Supabase Realtime × Flutter — Complete Guide to Real-Time Sync Patterns

"Save and see it instantly" is table stakes for modern apps. Supabase Realtime makes it straightforward.

Broadcast: Lightweight Instant Notifications

// Create a channel and send/receive Broadcasts
final channel = supabase.channel('room-1');

channel
  .onBroadcast(
    event: 'cursor',
    callback: (payload) {
      final x = payload['x'] as double;
      final y = payload['y'] as double;
      setState(() => _remoteCursor = Offset(x, y));
    },
  )
  .subscribe();

// Send your own cursor position
Future<void> sendCursor(Offset pos) async {
  await channel.sendBroadcast(
    event: 'cursor',
    payload: {'x': pos.dx, 'y': pos.dy},
  );
}

Enter fullscreen mode Exit fullscreen mode

Use cases: cursor sharing, typing indicators, transient event notifications (nothing that needs DB persistence)

Presence: Syncing Online Status

// Track who's online with Presence
final presenceChannel = supabase.channel('online-users');

presenceChannel
  .onPresenceSync(callback: (payload) {
    // Get everyone's current state
    final state = presenceChannel.presenceState();
    setState(() {
      _onlineUsers = state.values
          .expand((list) => list)
          .map((p) => p.payload['user'] as String)
          .toList();
    });
  })
  .subscribe(
    (status, [_]) async {
      if (status == RealtimeSubscribeStatus.subscribed) {
        // Announce your own presence
        await presenceChannel.track({'user': _userId, 'status': 'active'});
      }
    },
  );

@override
void dispose() {
  presenceChannel.untrack();
  supabase.removeChannel(presenceChannel);
  super.dispose();
}

Enter fullscreen mode Exit fullscreen mode

Postgres Changes: Receive DB Mutations in Real Time

// Subscribe to changes on the tasks table
supabase
  .channel('tasks-changes')
  .onPostgresChanges(
    event: PostgresChangeEvent.all,
    schema: 'public',
    table: 'tasks',
    filter: PostgresChangeFilter(
      type: PostgresChangeFilterType.eq,
      column: 'user_id',
      value: _userId,
    ),
    callback: (payload) {
      switch (payload.eventType) {
        case PostgresChangeEvent.insert:
          final task = Task.fromJson(payload.newRecord);
          setState(() => _tasks.add(task));
        case PostgresChangeEvent.update:
          final updated = Task.fromJson(payload.newRecord);
          setState(() {
            final idx = _tasks.indexWhere((t) => t.id == updated.id);
            if (idx >= 0) _tasks[idx] = updated;
          });
        case PostgresChangeEvent.delete:
          final id = payload.oldRecord['id'] as String;
          setState(() => _tasks.removeWhere((t) => t.id == id));
        default:
          break;
      }
    },
  )
  .subscribe();

Enter fullscreen mode Exit fullscreen mode

Optimistic Update Pattern

// Update the UI first, then sync to DB (improves perceived performance)
Future<void> toggleTask(Task task) async {
  // 1. Optimistic update (instant)
  setState(() {
    final idx = _tasks.indexWhere((t) => t.id == task.id);
    _tasks[idx] = task.copyWith(completed: !task.completed);
  });

  try {
    // 2. Persist to DB
    await supabase
        .from('tasks')
        .update({'completed': !task.completed})
        .eq('id', task.id);
    // Realtime receives the change — UI is already in the correct state
  } catch (e) {
    // 3. Roll back on failure
    setState(() {
      final idx = _tasks.indexWhere((t) => t.id == task.id);
      _tasks[idx] = task;  // restore original
    });
  }
}

Enter fullscreen mode Exit fullscreen mode

Summary

Broadcast        → Transient events with no DB persistence (cursor, typing)
Presence         → Online status and session management
Postgres Changes → Subscribe to DB mutations (filter to your own data)
Optimistic UI    → Update state first to maximize perceived speed

Enter fullscreen mode Exit fullscreen mode

Realtime channels carry a connection cost — only open the ones you need, and always release them in dispose.