Skip to content

Commit

Permalink
fix: release jessica
Browse files Browse the repository at this point in the history
  • Loading branch information
IamMuuo committed Oct 21, 2024
1 parent ba32d91 commit 410befa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ android {
applicationId = "com.dita.academia"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdk = 34
minSdk = 29
targetSdk = 34
versionCode = 9
versionCode = 10
versionName = "Jessica"
}
//
Expand Down
4 changes: 2 additions & 2 deletions lib/tools/chirp/pages/post_view_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class _PostViewPageState extends State<PostViewPage> {
),
sliver: SliverToBoxAdapter(
child: Text(
widget.post.title,
utf8convert(widget.post.title),
style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.bold,
),
Expand Down Expand Up @@ -83,7 +83,7 @@ class _PostViewPageState extends State<PostViewPage> {
padding: const EdgeInsets.only(left: 12),
sliver: SliverToBoxAdapter(
child: Text(
widget.post.content,
utf8convert(widget.post.content),
),
),
),
Expand Down
2 changes: 1 addition & 1 deletion lib/tools/chirp/widgets/post_card.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ class _PostCardState extends State<PostCard> {
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Text(
widget.post.title,
utf8convert(widget.post.title),
style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontWeight: FontWeight.w700,
),
Expand Down

0 comments on commit 410befa

Please sign in to comment.