We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d5d20f commit f70aed4Copy full SHA for f70aed4
flutter/example/lib/main.dart
@@ -124,26 +124,6 @@ class MainScaffold extends StatelessWidget {
124
child: Column(
125
children: [
126
const Center(child: Text('Trigger an action:\n')),
127
- Card(
128
- child: GestureDetector(
129
- key: Key('btn_4'),
130
- onTap: () => {
131
- print('Button 4'),
132
- },
133
- child: Stack(
134
- children: [
135
- //fancy card layout
136
- ElevatedButton(
137
- key: Key('btn_5'),
138
- onPressed: () => {
139
- print('button pressed 5'),
140
141
- child: const Text('Button 5'),
142
- ),
143
- ],
144
145
146
147
ElevatedButton(
148
onPressed: () => SecondaryScaffold.openSecondaryScaffold(context),
149
child: const Text('Open another Scaffold'),
0 commit comments