Skip to content

Instantly share code, notes, and snippets.

@MelbourneDeveloper
Created November 29, 2023 23:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MelbourneDeveloper/b59fdfa637188576d073dbfa53fd7689 to your computer and use it in GitHub Desktop.
Save MelbourneDeveloper/b59fdfa637188576d073dbfa53fd7689 to your computer and use it in GitHub Desktop.
Rx Example - ValueNotifier
import 'package:flutter/material.dart';
void main() => runApp(const MyApp());
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) => const MaterialApp(
debugShowCheckedModeBanner: false,
home: MyHomePage(),
);
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key});
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final ValueNotifier<String> name = ValueNotifier('Jane');
final ValueNotifier<String> surname = ValueNotifier('Doe');
late final ValueNotifier<String> fullName;
@override
void initState() {
super.initState();
fullName = ValueNotifier('${name.value} ${surname.value}');
name.addListener(_updateFullName);
surname.addListener(_updateFullName);
}
/// This ensures that changing first or surname triggers
/// a rebuild
void _updateFullName() {
fullName.value = '${name.value} ${surname.value}';
}
@override
Widget build(BuildContext context) => Scaffold(
appBar: AppBar(
title: const Text('ValueNotifier Example'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
ValueListenableBuilder<String>(
valueListenable: fullName,
builder: (context, value, child) => Text(
'${name.value} ${surname.value}',
style: Theme.of(context).textTheme.headlineMedium,
),
),
ElevatedButton(
onPressed: () =>
name.value = name.value == 'Jane' ? 'John' : 'Jane',
child: const Text('Change First Name'),
),
ElevatedButton(
onPressed: () =>
surname.value = surname.value == 'Doe' ? 'Dop' : 'Doe',
child: const Text('Change Surname'),
),
],
),
),
);
@override
void dispose() {
name.dispose();
surname.dispose();
super.dispose();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment