Created
April 14, 2020 21:48
-
-
Save malibayram/0ba5c3c5fbdb89f9c2a6a4ec3333d070 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', | |
| debugShowCheckedModeBanner: false, | |
| theme: ThemeData( | |
| primarySwatch: Colors.blue, | |
| ), | |
| home: MyHomePage(title: 'Flutter Demo Home Page'), | |
| ); | |
| } | |
| } | |
| class MyHomePage extends StatefulWidget { | |
| MyHomePage({Key key, this.title}) : super(key: key); | |
| final String title; | |
| @override | |
| _MyHomePageState createState() => _MyHomePageState(); | |
| } | |
| class _MyHomePageState extends State<MyHomePage> { | |
| bool priceupdate_value = false; | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( | |
| appBar: AppBar( | |
| title: Text(widget.title), | |
| ), | |
| body: Column( | |
| children: <Widget>[ | |
| if (priceupdate_value) | |
| Column( | |
| children: <Widget>[ | |
| TextFormField( | |
| decoration: InputDecoration( | |
| labelText: 'New Price', | |
| ), | |
| ), | |
| TextFormField( | |
| decoration: InputDecoration( | |
| labelText: 'Update Other Information', | |
| ), | |
| ), | |
| ], | |
| ), | |
| CheckboxListTile( | |
| title: Text("Do you want to update your price?"), | |
| controlAffinity: ListTileControlAffinity.leading, | |
| value: priceupdate_value, | |
| onChanged: (bool priceupdateValue) { | |
| setState(() { | |
| priceupdate_value = priceupdateValue; | |
| }); | |
| }, | |
| ), | |
| ], | |
| ), | |
| ); | |
| } | |
| } |
Author
thanks a lot
you're most welcome
thank you
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks a lot