SketchPro
4.27K subscribers
514 photos
20 videos
154 files
404 links
Hi there! I'm Dharamjeet, an App Developer and Graphics Designer. Are you interested in learning Graphic Design & App development? Follow my social media accounts for updates, tutorials, and other helpful resources!
Download Telegram
SketchPro
Photo
User Panel Download link

Password
aakashmishra

https://just2earn.com/LPXQ0MUT


Admin panel
Coming Soon
πŸ€—5πŸ‘Œ2❀1πŸ‘1πŸ”₯1πŸŽ‰1😍1πŸ€“1πŸ—Ώ1
Audio
πŸ‘5πŸ€—2πŸŽ‰1πŸ’―1πŸ€“1πŸ†’1😎1
πŸ”₯ Aaj se 6 mahine tak – No excuses, No skipping – sirf lagataar kaam! πŸ’ͺ

Har din kaam hoga, bina kisi bahane ke, bina kisi break ke.
Bas mehnat, focus aur dedication. 🎯

πŸ“… Agle 6 months sirf grind mode on πŸ”₯
Taaki ek saal baad life alag level pe ho!

Tayyar ho jao… game ab shuru ho raha hai! πŸš€

#6MonthsChallenge #NoExcuses #FullFocus #GrindModeOn #DisciplineOnly
πŸ‘7❀5πŸ‘Œ2😍2😭2πŸ‘1πŸ™1🀣1πŸ€—1πŸ†’1
πŸ™πŸŒΊ
πŸŽ‰11❀7🀣4πŸ‘2😍2πŸ’―2πŸ”₯1πŸ₯°1πŸ‘Œ1πŸ€“1πŸ—Ώ1
πŸŽ‚ 12 July

Gaon ka ladka, sapno ka banda πŸ’«
Aaj ek aur saal bada ho gaya, lekin jazba wahi hai β€” seedha dil se!

Thank you sabko jo mere safar ka hissa hain. πŸ™

Another year older, another step closer to the dream.


#BirthdayVibes #BornToRise πŸ’₯
πŸ₯°13πŸ’―6❀3πŸ‘Œ2πŸ”₯1πŸŽ‰1🀩1πŸ™1πŸ€“1
New Project coming soon β™‘
πŸ‘7πŸ₯°3πŸ‘Œ3😭3πŸ‘2πŸ€“2😁1πŸŽ‰1🀩1😍1πŸ—Ώ1
Suggest me app ideas πŸ’‘
πŸ‘3😭3πŸ‘Œ1😍1πŸ’―1
Update soon... πŸ‘
πŸ”₯4❀2πŸ‘1πŸ₯°1😍1πŸ€“1πŸ†’1😎1
Media is too big
VIEW IN TELEGRAM
Tutorial from : @LazyProgrammerX
😎3🀩2❀1πŸ‘1
New Ai lauched 🫑
πŸ‘11😁3πŸ‘Œ3❀2😍2πŸ”₯1πŸ’―1πŸ€“1πŸ˜‡1πŸ€—1πŸ—Ώ1
Apk info Application Prompt for Sketchware Users

Design a fully professional Android App Manager application using Sketchware Pro that strictly follows Material 3 (Material You) principles, but implement everything using Fully Java code and Fully XML layouts. No extra assets or libraries.

Requirement:
- App must list installed applications, divided into Downloaded Apps and System Apps.

Application Structure:

1️⃣ Main Screen (MainActivity.java + activity_main.xml):
- Top ActionBar (Toolbar style simulated):
β€’ Title: App Manager
β€’ Right-side icons:
- Search Icon β†’ Opens SearchActivity
- Refresh Icon β†’ Reload apps
- 3-dot Overflow Menu:
- Settings β†’ Opens SettingsActivity
- Developer Info β†’ Opens DeveloperActivity
β€’ Build using a horizontal LinearLayout with TextView (for title) and ImageViews (for icons), inside a CardView or elevated LinearLayout to simulate Material 3 TopAppBar.

- Tab Layout:
β€’ 2 Tabs: "Downloaded Apps" and "System Apps".
β€’ Use horizontal LinearLayout with two TextViews styled as tabs.
β€’ Selected tab text color: #000000 (Black).
β€’ Unselected tab text color: #888888 (Grey).
β€’ Use a View (height=2dp) below active tab as indicator with dynamic accent color.

- App List:
β€’ Use ListView (or CustomListView) to display installed apps.
β€’ Each item must be a CardView-style LinearLayout in a custom item_app.xml:
- ImageView: App Icon (Rounded)
- TextView: App Name (Bold)
- TextView: Package Name (Small)
β€’ OnClick: Open AppDetailsActivity passing the package name.

- Loading Indicator:
β€’ Use ProgressBar (Circular) with dynamic colors.
β€’ Show/hide using View.VISIBLE and View.GONE during app loading.

- Empty State:
β€’ If no apps found, show centered ImageView (placeholder image) and TextView with text "No apps found".

2️⃣ App Details Screen (AppDetailsActivity.java + activity_app_details.xml):
- TopAppBar (Same structure):
β€’ Back Arrow Icon (ImageView)
β€’ App Name (Centered Title)
β€’ 3-dot Overflow Menu:
- Find in Market
- Backup APK

- Main Layout:
β€’ App Icon (Large ImageView)
β€’ App Name (TextView)

- Main Buttons (use Buttons in XML):
β€’ Launch App (Filled Button)
β€’ Uninstall (Outlined Button)
β€’ App Settings (Text Button)

- App Information List:
β€’ Display app details like:
- Package Name
- Version
- Installed Date
- App Size
- APK Path
- Permissions List
- Target SDK / Min SDK
β€’ Use LinearLayouts inside a ScrollView for scrolling content.

3️⃣ Settings Screen (SettingsActivity.java + activity_settings.xml):
- Light, Dark, System Default Theme Selection
- Switch to toggle Dynamic Color
- Dropdown to select Sorting: A-Z, Size, Installed Date
- About Section with app info

4️⃣ Developer Info Screen (DeveloperActivity.java + activity_developer.xml):
- Static Information about developer.

UI Design Notes:
- Use #FFFFFF as background color throughout.
- Use dynamic accent colors for active tabs, indicators, buttons.
- Use Rounded Corners (16dp) for all Cards, Buttons, App Icons.
- Use Material Symbols Rounded icons (as PNG drawables).
- Add soft shadows using CardView or elevation.
- Ensure proper padding (16dp standard) around all UI elements.
- Use animations between activities (slide in/out) using Java.

General Implementation:
- Use Fully Java code to handle all app loading, click events, list population, APK backup, uninstall intents, open in Play Store, app settings, etc.
- Layouts must be built using Fully XML code with no dependency on Sketchware's GUI editor.
- No external libraries allowed; use standard Sketchware Pro components and native Android methods.

Output must result in a clean, modern, dynamic Material 3-like App Manager experience inside Sketchware Pro.
πŸ‘8πŸ€“3πŸ‘Œ2❀1πŸ₯°1πŸ™1😍1😎1
VibeCoding on IOS 😍
How to create
πŸ”₯3❀1
Announcements

India me firebase ki Realtime database me kuch errors aaya hai issiliyea india me Realtime database show nhi hoga, Abhi kaa latest update hai firebase ki taraph se

There have been some errors in the realtime database of firebase in India, that is why the realtime database will not be displayed in India, this is the latest update from firebase
❀5😁3😒3πŸ‘Œ2😨2πŸ‘1😭1πŸ˜‡1
1❀7πŸ†’4πŸ˜‡2πŸ€—1