Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: carti21/adityadroid.github.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: FlutterWeb
Choose a base ref
...
head repository: adityadroid/adityadroid.github.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: FlutterWeb
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 14 files changed
  • 1 contributor

Commits on Nov 30, 2022

  1. Updated information

    adityadroid committed Nov 30, 2022
    Copy the full SHA
    656dcd9 View commit details
  2. Copy the full SHA
    056c244 View commit details
Binary file added assets/avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/works/mybrightlink.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion lib/config/assets.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
class Assets{
static const moon = 'assets/moon.png';
static const avatar = 'assets/avatar.jpg';
static const avatar = 'assets/avatar.png';
static const facebook = 'assets/facebook.png';
static const github = 'assets/github.png';
static const instagram = 'assets/instagram.png';
@@ -19,6 +19,7 @@ class Assets{
static const savaari_consumer = 'assets/works/savaari_consumer.png';
static const savaari_partner = 'assets/works/savaari_partner.png';
static const trivz = 'assets/works/trivz.png';
static const mybrightlink ='assets/works/mybrightlink.png';
static const truelancer ='assets/works/truelancer.png';
static const vdrone = 'assets/works/vdrone.png';
static const wheelie_repairs = 'assets/works/wheelie_repairs.png';
1 change: 0 additions & 1 deletion lib/config/constants.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
class Constants{
static const BLOG_API = 'https://adityadroid-medium.herokuapp.com/@adityadroid';
static const MEDIUM_IMAGE_CDN = 'https://miro.medium.com/fit/c/700/300/';
static const BLOG_URL = 'http://www.medium.com/@adityadroid/';
static const PROFILE_MEDIUM = 'http://www.medium.com/@adityadroid';
9 changes: 8 additions & 1 deletion lib/config/projects.dart
Original file line number Diff line number Diff line change
@@ -2,11 +2,18 @@ import 'package:adityagurjar/models/project_model.dart';
import 'assets.dart';

final List<Project> projects = [
Project(
name: 'myBrightlink',
image: Assets.mybrightlink,
description:
'This app serves a community of families and caregivers navigating life with autism and behavioral health needs.',
link:
'https://play.google.com/store/apps/details?id=org.xolv.mybrightlink'),
Project(
name: 'Truelancer',
image: Assets.truelancer,
description:
'Truelancer Mobile App is a Freelancing Platform. You can Search Jobs & Hire Freelancers for work.',
'Truelancer is a Freelancing Platform. You can Search Jobs & Hire Freelancers for work.',
link:
'https://play.google.com/store/apps/details?id=com.truelancer.app'),
Project(
32 changes: 22 additions & 10 deletions lib/config/themes.dart
Original file line number Diff line number Diff line change
@@ -4,17 +4,23 @@ darkTheme(context) {
fontFamily: 'GoogleSansRegular',
primarySwatch: Colors.blue,
primaryColor: Colors.black,
accentColor: Colors.blue,
colorScheme: ColorScheme.dark().copyWith(
secondary: Colors.blue,
primary: Colors.blue
),
disabledColor: Colors.grey,
cardColor: Color(0xff1f2124),
canvasColor: Colors.black,
brightness: Brightness.dark,
buttonTheme: Theme.of(context).buttonTheme.copyWith(
colorScheme: ColorScheme.dark(),
buttonColor: Colors.blue,
splashColor: Colors.black),
textButtonTheme: TextButtonThemeData(
style: TextButton.styleFrom(
primary: Colors.white,
backgroundColor: Colors.blue,
),
),
appBarTheme: AppBarTheme(
elevation: 0.0,
backgroundColor: Colors.black
),
);
}
@@ -23,17 +29,23 @@ lightTheme(context) {
fontFamily: 'GoogleSansRegular',
primarySwatch: Colors.blue,
primaryColor: Colors.white,
accentColor: Colors.blue,
colorScheme: ColorScheme.light().copyWith(
secondary: Colors.blue,
primary: Colors.blue
),
disabledColor: Colors.grey,
textButtonTheme: TextButtonThemeData(
style: TextButton.styleFrom(
primary: Colors.white,
backgroundColor: Colors.blue,
),
),
cardColor: Colors.white,
canvasColor: Colors.white,
brightness: Brightness.light,
buttonTheme: Theme.of(context).buttonTheme.copyWith(
colorScheme: ColorScheme.light(),
buttonColor: Colors.blue,
splashColor: Colors.white),
appBarTheme: AppBarTheme(
elevation: 0.0,
backgroundColor: Colors.white
),
);
}
Loading