| // Copyright 2014 The Flutter Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import 'package:flutter/material.dart'; |
| |
| /// Flutter code sample for [Offstage]. |
| |
| void main() => runApp(const OffstageApp()); |
| |
| class OffstageApp extends StatelessWidget { |
| const OffstageApp({super.key}); |
| |
| @override |
| Widget build(BuildContext context) { |
| return MaterialApp( |
| home: Scaffold( |
| appBar: AppBar(title: const Text('Offstage Sample')), |
| body: const Center( |
| child: OffstageExample(), |
| ), |
| ), |
| ); |
| } |
| } |
| |
| class OffstageExample extends StatefulWidget { |
| const OffstageExample({super.key}); |
| |
| @override |
| State<OffstageExample> createState() => _OffstageExampleState(); |
| } |
| |
| class _OffstageExampleState extends State<OffstageExample> { |
| final GlobalKey _key = GlobalKey(); |
| bool _offstage = true; |
| |
| Size _getFlutterLogoSize() { |
| final RenderBox renderLogo = _key.currentContext!.findRenderObject()! as RenderBox; |
| return renderLogo.size; |
| } |
| |
| @override |
| Widget build(BuildContext context) { |
| return Column( |
| mainAxisAlignment: MainAxisAlignment.center, |
| children: <Widget>[ |
| Offstage( |
| offstage: _offstage, |
| child: FlutterLogo( |
| key: _key, |
| size: 150.0, |
| ), |
| ), |
| Text('Flutter logo is offstage: $_offstage'), |
| ElevatedButton( |
| child: const Text('Toggle Offstage Value'), |
| onPressed: () { |
| setState(() { |
| _offstage = !_offstage; |
| }); |
| }, |
| ), |
| if (_offstage) |
| ElevatedButton( |
| child: const Text('Get Flutter Logo size'), |
| onPressed: () { |
| ScaffoldMessenger.of(context).showSnackBar( |
| SnackBar( |
| content: Text('Flutter Logo size is ${_getFlutterLogoSize()}'), |
| ), |
| ); |
| }), |
| ], |
| ); |
| } |
| } |