Bonjour,
Je rencontre un souci sur l’affichage d’un formulaire qui affiche l’email du membre ainsi qu’une case à cocher pour indiquer s’il souhaite recevoir la newsletter ou non. Donc j’appelle un script php/mysql qui me retourne l’email et la valeur de newsletter (soit 0 ou 1) et j’affiche dans un builder les valeurs retournées par le script. ça m’affiche donc son email et la valeur de newsletter (coché ou non) qui provient des valeurs de la base de données. Le code ci-dessous permet de cocher ou non à l’initialisation mais il me fout en même temps dans la merde car quand on coche ou décoche le checkbox un setstate est réalisé pour changer la valeur de la variable « newsletter » qui indique l'état de la checkbox mais le souci c’est que ça rappelle le code ci-dessous et écrase donc la valeur. Le souci est donc qu’il faudrait que le code ci-dessous qui est un code d’initialisation ne s’éxécute que à l’initialisation du widget et pas lors du setstate(). Quelqu’un aurait une idée ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
 
if (values.newsletter=="1") {
    newsletter=true;
}
else {
    newsletter=false;
}
Voici le code complet :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
 
import 'package:flutter/material.dart';
import 'dart:convert';
import 'package:http/http.dart' as http;
import 'dart:async';
import 'menu_member.dart';
import 'globals.dart' as globals;
import 'appbar_draw.dart';
import 'package:awesome_dialog/awesome_dialog.dart';
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
import 'package:email_validator/email_validator.dart';
import 'package:awesome_page_transitions/awesome_page_transitions.dart';
 
// Create a Form widget.
class Affiche_Profil extends StatefulWidget {
  @override
 
  _Affiche_Profil_State createState() {
    return _Affiche_Profil_State();
  }
}
 
// Create a corresponding State class.
// This class holds data related to the form.
 
class _Affiche_Profil_State extends State<Affiche_Profil> {
  @override
 
  final _formKey = GlobalKey<FormState>();
  bool newsletter=false;
  final _emailController=TextEditingController();
  Future <user> profil;
 
  Future <user> Display_Profil () async {
    // SERVER LOGIN API URL
    var url = 'https://www.fortune-island.com/app/info_profil.php';
 
    var data = {
      'id_membre': globals.id_membre,
    };
 
    var data_encode = jsonEncode(data);
    // Starting Web API Call.
    var response = await http.post(url,body: data_encode,headers: {'content-type': 'application/json','accept': 'application/json','authorization': globals.token});
 
    // Getting Server response into variable.
 
    var jsondata = json.decode(response.body);
 
    user profile=user(jsondata["pseudo"],jsondata["email"],jsondata["newsletter"]);
    return profile;
  }
 
  void initState() {
    profil = Display_Profil();
    super.initState();
  }
 
  @override
  Widget build(BuildContext context) {
    return Stack(
        children: <Widget>[
          Container(
            decoration: BoxDecoration(
              gradient: LinearGradient(
                begin: Alignment.topLeft,
                end: Alignment.bottomRight,
                colors: <Color>[
                  Colors.blue[300],Colors.blue[400]
                ],
              ),
            ),
          ),
          Scaffold(
              appBar: drawappbar(true),
              backgroundColor: Colors.transparent,
              drawer: new DrawerOnly(className: Affiche_Profil()),
              body:
              Container(
                  height: MediaQuery
                      .of(context)
                      .size
                      .height,
                  width: MediaQuery
                      .of(context)
                      .size
                      .width,
                  child:
                    FutureBuilder(
                        future: profil,
                        builder: (BuildContext context, AsyncSnapshot snapshot) {
                          switch (snapshot.connectionState) {
                            case ConnectionState.waiting:
                              return new Center(
                                child: new CircularProgressIndicator(),);
                            default:
                              if (snapshot.hasError) {
                                return new Center(
                                  child: new Text('Error: ${snapshot.error}'),);
                              }
                              else {
                                user values = snapshot.data;
                                if (snapshot.hasData==false) {
                                  return Container(
                                      child: Center(
                                          child: Text("Données inaccessible !!!",style: TextStyle(color: Colors.white))
                                      )
                                  );
                                }
                                else {
                                  _emailController.text=values.email;
                                  if (values.newsletter=="1") {
                                    newsletter=true;
                                  }
                                  else {
                                    newsletter=false;
                                  }
                                  return Form(
                                      key: _formKey,
                                      autovalidate: true,
                                      child:
                                    ListView(
                                      children: <Widget>[
                                        Center(
                                          child: Container(
                                              margin: const EdgeInsets.only(top: 20.0),
                                              child: Text("VOS INFOS",textAlign: TextAlign.center,style: TextStyle(fontSize: 30.0,color: Colors.white))
                                          ),
                                        ),
                                        Padding(
                                        padding: const EdgeInsets.only(top:8.0),
                                        child:
                                        TextFormField(
                                          autofocus: true,
                                          obscureText: false,
                                          controller: _emailController,
                                          decoration: InputDecoration(
                                            border: OutlineInputBorder(
                                                borderRadius: BorderRadius.circular(32.0)
                                            ),
                                            fillColor: Colors.white, filled: true,
                                            icon: Icon(Icons.email,color: Colors.white),
                                            hintText: "Entrez votre email",
                                            contentPadding: EdgeInsets.fromLTRB(20.0, 10.0, 20.0, 10.0),
                                            hintStyle: TextStyle(color: Colors.grey[500],fontSize: 10),
                                          ),
                                          validator: (value) {
                                            if (value.isEmpty) {
                                              return 'Entrez votre email';
                                            }
                                            if (!EmailValidator.validate(value)) {
                                              return 'Email non valide';
                                            }
                                            return null;
                                          },
                                        ),
                                        ),
                                        Padding(
                                        padding: const EdgeInsets.only(top:8.0),
                                        child:
                                        CheckboxListTile(
                                        title: Text("Newsletter :",style: TextStyle(color: Colors.white)),
                                        value: newsletter,
                                          onChanged: (bool newValue) {
                                            setState(() {
                                                newsletter = newValue;
                                            });
                                          }
                                        ),
                                        ),
                                        Padding(
                                        padding: const EdgeInsets.only(top:8.0),
                                        child :
                                        Center(
                                          child: Container(
                                            width:MediaQuery.of(context).size.width,
                                            height:45,
                                            child: RaisedButton(
                                              color: Colors.green,
                                              textColor: Colors.white,
                                              padding: EdgeInsets.fromLTRB(9, 9, 9, 9),
                                              child: Text('Modifier'),
                                              shape: RoundedRectangleBorder(
                                                  borderRadius: BorderRadius.circular(25)
                                              ),
                                              onPressed: () {
                                                // Validate returns true if the form is valid, or false
                                                // otherwise.
                                                if (_formKey.currentState.validate()) {
                                                  ModifyInfos();
                                                }
                                                else {
                                                  return null;
                                                }
                                              },
                                            ),
                                          ),
                                        ),
                                        ),//    <-- label
                                      ]
                                  )
                                  );
                                }
                              }
                          }
                        }
                    )
                  )
              )
        ]
    );
  }
  Future ModifyInfos() async{
    // Getting value from Controller
    String email = _emailController.text;
 
    var url = 'https://www.fortune-island.com/app/modify_profil.php';
    // Store all data with Param Name.
    String etatnews="0";
    if (newsletter==true) {
      etatnews="1";
    }
    var data = {'id_membre':globals.id_membre,'email': email,'news': etatnews};
 
    var data_encode=jsonEncode(data);
    print(data_encode);
    // Starting Web API Call.
    var response = await http.post(url, body: data_encode,headers: {'content-type': 'application/json','accept': 'application/json','authorization': globals.token});
    print(response.body);
    Map <String,dynamic> map = json.decode(response.body);
    if(map["status"] == 1)
    {
      AwesomeDialog(context: context,
          useRootNavigator: true,
          dialogType: DialogType.SUCCES,
          animType: AnimType.BOTTOMSLIDE,
          tittle: 'MODIFICATION DU PROFIL',
          desc: map["libelle"],
          btnOkOnPress: () {
            setState(() {
              profil = Display_Profil();
            });
          }).show();
    }else{
      // If Email or Password did not Matched.
      // Showing Alert Dialog with Response JSON Message.
      AwesomeDialog(context: context,
          useRootNavigator: true,
          dialogType: DialogType.INFO,
          animType: AnimType.BOTTOMSLIDE,
          tittle: 'INFORMATIONS INCHANGEES',
          desc: map["libelle"],
          btnOkOnPress: () {
            setState(() {
              profil = Display_Profil();
            });
          }).show();
    }
  }
}
 
class user {
 
  final String pseudo;
  final String email;
  final String newsletter;
 
  const user(this.pseudo,this.email,this.newsletter);
}