ConnectOut-sdp/sdp2023

View on GitHub
app/src/main/res/layout/fragment_map.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".event.nearbyEvents.map.EventsMapViewFragment"
        tools:viewBindingIgnore="true">

    <com.google.android.material.floatingactionbutton.FloatingActionButton
            android:id="@+id/refresh_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:background="?attr/colorPrimary"
            android:src="@drawable/refresh_image"
            android:tint="@color/white"
            tools:ignore="RtlSymmetry" />

</fragment>