build method
Describes the part of the user interface represented by this widget.
The framework calls this method when this widget is inserted into the tree in a given BuildContext and when the dependencies of this widget change (e.g., an InheritedWidget referenced by this widget changes). This method can potentially be called in every frame and should not have any side effects beyond building a widget.
The framework replaces the subtree below this widget with the widget returned by this method, either by updating the existing subtree or by removing the subtree and inflating a new subtree, depending on whether the widget returned by this method can update the root of the existing subtree, as determined by calling Widget.canUpdate.
Typically implementations return a newly created constellation of widgets that are configured with information from this widget's constructor and from the given BuildContext.
The given BuildContext contains information about the location in the tree at which this widget is being built. For example, the context provides the set of inherited widgets for this location in the tree. A given widget might be built with multiple different BuildContext arguments over time if the widget is moved around the tree or if the widget is inserted into the tree in multiple places at once.
The implementation of this method must only depend on:
- the fields of the widget, which themselves must not change over time, and
- any ambient state obtained from the
contextusing BuildContext.dependOnInheritedWidgetOfExactType.
If a widget's build method is to depend on anything else, use a StatefulWidget instead.
See also:
- StatelessWidget, which contains the discussion on performance considerations.
Implementation
@override
Widget build(BuildContext context) {
return Card(
margin: const EdgeInsets.all(16),
child: Padding(
padding: const EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: [
Text(
'App Update Debug Controls',
style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 16),
Text(
'Use these controls to test the app update notification system:',
style: Theme.of(context).textTheme.bodyMedium,
),
const SizedBox(height: 16),
Wrap(
spacing: 8,
runSpacing: 8,
children: [
ElevatedButton.icon(
onPressed: () => _forceVersionCheck(),
icon: const Icon(Icons.refresh),
label: const Text('Check for Updates'),
),
ElevatedButton.icon(
onPressed: () => _forceRefreshRemoteConfig(),
icon: const Icon(Icons.cloud_download),
label: const Text('Force Refresh Config'),
),
ElevatedButton.icon(
onPressed: () => _testRemoteConfigListener(),
icon: const Icon(Icons.sensors),
label: const Text('Test RC Listener'),
),
ElevatedButton.icon(
onPressed: () => _checkListenerStatus(),
icon: const Icon(Icons.health_and_safety),
label: const Text('Check Listener Health'),
),
ElevatedButton.icon(
onPressed: () => _simulateLifecycleResume(),
icon: const Icon(Icons.play_arrow),
label: const Text('Simulate App Resume'),
),
ElevatedButton.icon(
onPressed: () => _showCurrentVersionInfo(context),
icon: const Icon(Icons.info),
label: const Text('Version Info'),
),
],
),
const SizedBox(height: 16),
Container(
padding: const EdgeInsets.all(12),
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.surfaceContainerHighest,
borderRadius: BorderRadius.circular(8),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Testing Notes:',
style: Theme.of(context).textTheme.labelLarge?.copyWith(
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 8),
Text(
'• To test required updates, set a higher version in Firebase Remote Config with updateType: "required"',
style: Theme.of(context).textTheme.bodySmall,
),
const SizedBox(height: 4),
Text(
'• To test recommended updates, set a higher version with updateType: "recommended"',
style: Theme.of(context).textTheme.bodySmall,
),
const SizedBox(height: 4),
Text(
'• Version checks happen automatically on app resume after 5+ minutes',
style: Theme.of(context).textTheme.bodySmall,
),
const SizedBox(height: 4),
Text(
'• Use "Test RC Listener" to verify Real-time Remote Config updates are working',
style: Theme.of(context).textTheme.bodySmall,
),
],
),
),
],
),
),
);
}