Skip to content

Upgrade 3.5 #30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 47 commits into from
Jun 2, 2025
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
864f429
Updated pubspec
resashkin Sep 18, 2024
a9c623f
Fixed pubspec.lock
resashkin Sep 18, 2024
8d7f5ca
UserProfile...
resashkin Sep 20, 2024
5f67ecf
Added tags
resashkin Sep 21, 2024
b483405
Define screen
resashkin Sep 21, 2024
8f6c22a
Flutter upgrade * Refactored UserProfile
resashkin Dec 20, 2024
293bf87
Make create button smaller
resashkin Dec 20, 2024
8a8b71a
Show digest for period
resashkin Jan 1, 2025
8e7a8b6
User change action * Hide suggestions from UserProfile
resashkin Jan 4, 2025
0b4b690
Bump
resashkin Jan 5, 2025
7c51773
Gitignore
resashkin Jan 19, 2025
96e16a3
Just deployed to the web :)
resashkin Jan 19, 2025
17522bb
Telegram Web App Support. Offline mode true by default * Telegram. Fi…
resashkin Jan 20, 2025
8f6756b
Added OTP verification * Upgraded deps (bloc, immutable_collections, …
resashkin Jan 26, 2025
710ae63
Force auth or signup
resashkin Jan 26, 2025
c5b81a4
Enabled colored emoji
resashkin Feb 5, 2025
a82b0f7
Fix assets * Remove useless font * Integrate fvm * Integrate detective
resashkin Feb 22, 2025
ec5a5ea
Disable Apple Watch (TEMP) * Extract using in telegram bot
resashkin Feb 22, 2025
ab8f442
MindScreen. Long press calendar -> change flag
resashkin Mar 23, 2025
9c1bc22
MindScreen. Implemented MonthView
resashkin Mar 24, 2025
69dc45d
Make Tabs great again * Bloc for tabs
resashkin May 2, 2025
4f1edd7
Added TabsRepository + Bloc * ReactiveSharedPrefs * JSON generation *…
resashkin May 16, 2025
296a975
Show bodyWidgets by type
resashkin May 17, 2025
1804e7a
Fix problem with clear
resashkin May 19, 2025
595dda2
Hide features from settings * Add TabsSettings Screen * Reflect tabs …
resashkin May 21, 2025
f90b776
Disable Google Sign In * Upgrade to Flutter 3.32.0
resashkin May 22, 2025
fafc3fc
Fixed bug with first tab selected
resashkin May 22, 2025
dc9bed4
Added empty state to insights
resashkin May 22, 2025
0ce9d4a
Upgraded tabs settings
resashkin May 24, 2025
2f55eb4
Fixed crash
resashkin May 25, 2025
3e2b31c
Fix
resashkin May 25, 2025
7a9a0d0
Fix icons
resashkin May 25, 2025
892a0c2
Fix
resashkin May 25, 2025
5755530
Fix default value for offline mode
resashkin May 25, 2025
85a7f41
Bump version * Removed group
resashkin May 25, 2025
1956e5c
Fix default tabs * Disable offline mode
resashkin May 25, 2025
cb9c15d
Sign up rename * Hide profile for now
resashkin May 25, 2025
58ef5b2
Bump
resashkin May 25, 2025
4293595
Renamings
resashkin May 25, 2025
18ef650
Return back adaptive bottom bar
resashkin May 26, 2025
ac17067
Fix
resashkin May 26, 2025
fb20476
Bump
resashkin May 26, 2025
9bc0c36
Return back kekable group
resashkin May 26, 2025
39e4fb6
Switched certs
resashkin May 27, 2025
26fe6c5
Regenerate android project
resashkin May 29, 2025
288b94d
Removed workmanager
resashkin May 29, 2025
58c777d
Fixed release for android
resashkin May 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
resashkin committed May 25, 2025
commit 3e2b31c1e6d0e3acbe3b3c263ed6f8e72c86c8fd
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import 'dart:math';

import 'package:flutter/material.dart';
import 'package:keklist/domain/repositories/tabs/models/tabs_settings.dart';
Expand Down Expand Up @@ -77,9 +76,7 @@ final class _TabsContainerScreenState extends State<TabsContainerScreen> with Di
enableFeedback: true,
items: List.of(_items.length >= 2 ? _items : _getFakeItems),
currentIndex: _selectedTabIndex,
onTap: (tabIndex) {
setState(() => sendEventToBloc<TabsContainerBloc>(TabsContainerChangeSelectedTab(selectedIndex: tabIndex)));
},
onTap: (tabIndex) => sendEventToBloc<TabsContainerBloc>(TabsContainerChangeSelectedTab(selectedIndex: tabIndex)),
useLegacyColorScheme: false,
),
falseChild: SizedBox.shrink(),
Expand Down
Loading