Update app label and branding to "Vaani"

This commit is contained in:
Dr-Blank 2024-08-14 03:32:02 -04:00
parent 6df55a5d0d
commit 1c95d1e4bb
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
7 changed files with 8 additions and 7 deletions

View file

@ -18,7 +18,8 @@
"riverpod",
"shelfsdk",
"tapable",
"unfocus"
"unfocus",
"Vaani"
],
"cmake.configureOnOpen": false
}

View file

@ -1,4 +1,4 @@
# whispering_pages
# Vaani
A new Flutter project.

View file

@ -108,7 +108,7 @@ class OnboardingSinglePage extends HookConsumerWidget {
Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
'Welcome to Whispering Pages',
'Welcome to Vaani',
style: Theme.of(context).textTheme.headlineSmall,
),
),

View file

@ -20,7 +20,7 @@ class HomePage extends HookConsumerWidget {
return Scaffold(
appBar: AppBar(
title: GestureDetector(
child: const Text('Whispering Pages'),
child: const Text('Vaani'),
onTap: () {
// scroll to the top of the page
scrollController.animateTo(

View file

@ -27,7 +27,7 @@ class LibraryPage extends HookConsumerWidget {
return Scaffold(
appBar: AppBar(
title: GestureDetector(
child: const Text('Whispering Pages'),
child: const Text('Vaani'),
onTap: () {
// scroll to the top of the page
scrollController.animateTo(

View file

@ -5,7 +5,7 @@ import 'package:flutter/foundation.dart' show immutable;
class AppMetadata {
const AppMetadata._();
// TODO: use the packageinfo package to get the app name
static const String appName = 'Whispering Pages';
static const String appName = 'Vaani';
static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_');
}

View file

@ -16,7 +16,7 @@ class MyDrawer extends StatelessWidget {
children: [
const DrawerHeader(
child: Text(
'Whispering Pages',
'Vaani',
style: TextStyle(
fontStyle: FontStyle.italic,
fontSize: 30,