Skip to content

Commit

Permalink
minor esthetics change
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexForget committed Jan 18, 2024
1 parent 436057a commit 59d3b47
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 0 additions & 3 deletions lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,6 @@ void main() async {
Hive.registerAdapter(NoteModelAdapter());
// ignore: unused_local_variable
boxNotes = await Hive.openBox<NoteModel>(noteHiveBox);
// boxNotes.deleteAt(0);
// await boxNotes.clear();
// print(boxNotes.values);
Bloc.observer = const SimpleBlocObserver();
const AndroidInitializationSettings initializationSettingsAndroid =
AndroidInitializationSettings('app_icon');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ class BuildNoteTile extends StatelessWidget {
borderRadius: const BorderRadius.all(radius8),
color: Theme.of(context).colorScheme.primaryContainer),
child: Padding(
padding: const EdgeInsets.only(left: Sizes.p8, right: Sizes.p8),
padding: const EdgeInsets.only(
left: Sizes.p16,
right: Sizes.p8,
top: Sizes.p4,
bottom: Sizes.p4),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix.
version: 1.0.2+3
version: 1.1.0+4

environment:
sdk: '>=3.2.0 <4.0.0'
Expand Down

0 comments on commit 59d3b47

Please sign in to comment.