Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 21-add-onlongpress-with-popup-on-parameters
  • 23-center-vertically-buttons
  • 30-highlight-bin-when-selecting-disabled-item
  • master
  • 0.0.1
  • 0.0.2
  • 0.1.0
  • 0.1.1
  • 0.2.0
  • 0.3.0
  • 0.4.0
  • 0.5.0
  • 0.6.0
  • 0.6.1
  • 0.7.0
  • 0.8.0
  • 0.8.1
  • 0.8.2
  • 0.8.3
  • 0.8.4
  • 0.9.0
  • 0.9.1
  • 1.0.0
  • 1.0.2
  • 1.0.3
  • 1.0.4
  • 1.0.5
  • 1.0.6
  • 1.0.7
29 results

Target

Select target project
  • android/flutter-toolbox
1 result
Select Git revision
  • 21-add-onlongpress-with-popup-on-parameters
  • 23-center-vertically-buttons
  • 30-highlight-bin-when-selecting-disabled-item
  • master
  • 0.0.1
  • 0.0.2
  • 0.1.0
  • 0.1.1
  • 0.2.0
  • 0.3.0
  • 0.4.0
  • 0.5.0
  • 0.6.0
  • 0.6.1
  • 0.7.0
  • 0.8.0
  • 0.8.1
  • 0.8.2
  • 0.8.3
  • 0.8.4
  • 0.9.0
  • 0.9.1
  • 1.0.0
  • 1.0.2
  • 1.0.3
  • 1.0.4
  • 1.0.5
  • 1.0.6
  • 1.0.7
29 results
Show changes
Commits on Source (2)
## 1.0.5
- Add bottom margin in parameters/start page
## 1.0.4
- Put "delete" and "resume" buttons on same line
......
......@@ -111,6 +111,10 @@ class PageParameters extends StatelessWidget {
if (blockBottom.isNotEmpty) {
blocks.addAll(blockBottom);
} else {
// Add bottom margin
blocks.add(SizedBox(height: separatorHeight));
blocks.add(SizedBox(height: separatorHeight));
}
return Column(children: blocks);
......
......@@ -3,7 +3,7 @@ description: "Flutter custom toolbox for org.benoitharrault.* projects."
publish_to: https://pub.harrault.fr/
version: 1.0.4
version: 1.0.5
homepage: https://git.harrault.fr/android/flutter-toolbox
......