Skip to content

Instantly share code, notes, and snippets.

@Arpit723
Arpit723 / main.dart
Created July 23, 2025 14:23
Column Layout Study
import 'dart:ffi';
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@Arpit723
Arpit723 / main.dart
Created July 19, 2025 11:59
First Flutter Layout Example
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
@Arpit723
Arpit723 / FriendMapListVC.m
Created December 23, 2021 06:55
People Map Loading, Single Cluster loads
-(void)findAndMoveToCenterOfTheCity:(POIItem1*)poiItem {
NSLog(@"%s",__PRETTY_FUNCTION__);
[self addClusterToRenderingArray:poiItem];
CLGeocoder *geocoder = [[CLGeocoder alloc] init];
CLLocation *location = [[CLLocation alloc] initWithLatitude:poiItem.position.latitude longitude:poiItem.position.longitude];
[geocoder reverseGeocodeLocation:location
completionHandler:^(NSArray *placemarks, NSError *error)
{
if (error || placemarks.count == 0){
NSLog(@"Geocode failed with error: %@", error);