added keys parameter to coupons containers
This commit is contained in:
@@ -17,7 +17,7 @@
|
||||
<option name="ALLOW_USER_CONFIGURATION" value="false" />
|
||||
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/src/main/AndroidManifest.xml" />
|
||||
<option name="RES_FOLDER_RELATIVE_PATH" value="/src/main/res" />
|
||||
<option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/src/main/res" />
|
||||
<option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/src/main/res;file://$MODULE_DIR$/src/autobonus/res" />
|
||||
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/src/main/assets" />
|
||||
</configuration>
|
||||
</facet>
|
||||
@@ -137,6 +137,7 @@
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../build/app/intermediates/symbols" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../build/app/intermediates/transforms" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../build/app/outputs" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../build/app/reports" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/../../build/app/tmp" />
|
||||
</content>
|
||||
<orderEntry type="jdk" jdkName="Android API 25 Platform" jdkType="Android SDK" />
|
||||
@@ -164,6 +165,6 @@
|
||||
<orderEntry type="module" module-name="path_provider" exported="" />
|
||||
<orderEntry type="module" module-name="sqflite" exported="" />
|
||||
<orderEntry type="module" module-name="image_picker" exported="" />
|
||||
<orderEntry type="library" exported="" name="image_picker-1.0-SNAPSHOT" level="project" />
|
||||
<orderEntry type="library" exported="" name="glide-3.7.0" level="project" />
|
||||
</component>
|
||||
</module>
|
||||
@@ -193,6 +193,7 @@ abstract class BaseState<T extends StatefulWidget> extends State<T> {
|
||||
}
|
||||
|
||||
return new Container(
|
||||
key: new Key(new DateTime.now().millisecondsSinceEpoch.toString()),
|
||||
margin: new EdgeInsets.only(left: 5.0, right: 5.0, top: 5.0),
|
||||
child: new Card(
|
||||
child: new ExpansionTile(
|
||||
|
||||
@@ -64,6 +64,8 @@ getCouponsRequest(String endpoint, String token) async {
|
||||
'Accept-Language': Intl.defaultLocale
|
||||
};
|
||||
|
||||
print(headers);
|
||||
|
||||
return httpClient.get(endpoint, headers: headers);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user